[-] IN : Fixed bug with database creation

This commit is contained in:
Francois Gaillard
2013-07-03 12:19:34 +02:00
parent 5789e6eb51
commit 8d3f330b2d
3 changed files with 7 additions and 7 deletions
+2 -2
View File
@@ -63,8 +63,8 @@ class DbMySQLiCore extends Db
else
$link = @new mysqli($host, $user, $password);
$success = $link->query('CREATE DATABASE `'.bqSQL($dbname).'`');
if ($dropit)
$success &= $link->query('DROP DATABASE `'.bqSQL($dbname).'`');
if ($dropit && ($link->exec('DROP DATABASE `'.bqSQL($dbname).'`') !== false))
return true;
return $success;
}