fix: a lot of MySQL calls in templates replaced by MySQLi ones

This commit is contained in:
Martin Ambrus
2017-08-28 23:56:59 +02:00
parent 814a904343
commit 92b9a7b043
75 changed files with 427 additions and 427 deletions
+1 -1
View File
@@ -124,7 +124,7 @@ class Process {
if(DB_TYPE) {
$result = $database->connection->multi_query($str);
} else {
$result = $database->mysql_exec_batch($str);
$result = $database->mysqli_exec_batch($str);
}
if($result) {
header("Location: index.php?s=3");