We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1e3869a commit ab5c794Copy full SHA for ab5c794
class.DBPDO.php
@@ -40,7 +40,7 @@ function connect(){
40
41
function table_exists($table_name){
42
$stmt = $this->prep_query('SHOW TABLES LIKE ?');
43
- $stmt->execute(array($this->add_table_prefix($table_name)));
+ $stmt->execute(array($table_name));
44
return $stmt->rowCount() > 0;
45
}
46
0 commit comments