[-] 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
@@ -51,8 +51,8 @@ class MySQLCore extends Db
{
$link = mysql_connect($host, $user, $password);
$success = mysql_query('CREATE DATABASE `'.bqSQL($dbname).'`', $link);
if ($dropit)
$success &= mysql_query('DROP DATABASE `'.bqSQL($dbname).'`', $link);
if ($dropit && ($link->exec('DROP DATABASE `'.bqSQL($dbname).'`') !== false))
return true;
return $success;
}