Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander M. Turek <me@derrabus.de>2004-01-22 05:13:48 +0300
committerAlexander M. Turek <me@derrabus.de>2004-01-22 05:13:48 +0300
commit2915b5c3cea54b55d85f1b15029808480952b87d (patch)
tree289cfde62b3cbb8e748d006e322c5ab0ae26db32 /db_create.php
parent597dca0f1b229b56efb9d9fe1398c6745f4d3c58 (diff)
Added MySQLi library; Removed calls to old mysql_wrappers library.
Diffstat (limited to 'db_create.php')
-rw-r--r--db_create.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/db_create.php b/db_create.php
index 1e60540045..3af8da4923 100644
--- a/db_create.php
+++ b/db_create.php
@@ -29,7 +29,7 @@ if (isset($db_charset) && isset($mysql_charsets) && in_array($db_charset, $mysql
}
$sql_query .= ';';
-$result = PMA_mysql_query($sql_query) or PMA_mysqlDie('', $sql_query, FALSE, $err_url);
+$result = PMA_DBI_query($sql_query);
/**