fix: mysql (without the "i") class returned to its original state

this got replaced by all those mysql-to-mysqli find and replace
mumbo-jumbo tricks :)
This commit is contained in:
Martin Ambrus
2017-08-29 10:49:36 +02:00
parent a08f329857
commit 298e6feb58
2 changed files with 9 additions and 9 deletions
Regular → Executable
+1 -1
View File
@@ -124,7 +124,7 @@ class Process {
if(DB_TYPE) {
$result = $database->connection->multi_query($str);
} else {
$result = $database->mysqli_exec_batch($str);
$result = $database->mysql_exec_batch($str);
}
if($result) {
header("Location: index.php?s=3");