Skip to content

Commit

Permalink
BUGFIX Ensure MySQLi is used consistently in MySQLDatabaseConfigurati…
Browse files Browse the repository at this point in the history
…onHelper, not old mysql functions
  • Loading branch information
halkyon committed May 4, 2012
1 parent a79032c commit 4e18cc5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dev/install/MySQLDatabaseConfigurationHelper.php
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ public function requireDatabaseOrCreatePermissions($databaseConfig) {
$alreadyExists = true;
} else {
if($conn && $conn->query('CREATE DATABASE testing123')) {
mysql_query('DROP DATABASE testing123', $conn);
$conn->query('DROP DATABASE testing123');
$success = true;
$alreadyExists = false;
}
Expand Down

0 comments on commit 4e18cc5

Please sign in to comment.