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:
authorMichal Čihař <mcihar@suse.cz>2011-12-14 12:51:18 +0400
committerMichal Čihař <mcihar@suse.cz>2011-12-14 12:51:20 +0400
commit396e5716f89d291f366266e639c26e2ed8391dd2 (patch)
treec7cd1a93ea0a78d2b0b1119c907f311d5e087388 /config.sample.inc.php
parenta074b4c6e28b044670d21dec791ad0f909eba251 (diff)
Use mysqli in example configuration
The mysql extension does not support some features we use and I think it is safe to assume nearly everybody has mysqli.
Diffstat (limited to 'config.sample.inc.php')
-rw-r--r--config.sample.inc.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/config.sample.inc.php b/config.sample.inc.php
index 0ea16d5f76..1a22fc3c80 100644
--- a/config.sample.inc.php
+++ b/config.sample.inc.php
@@ -31,8 +31,8 @@ $cfg['Servers'][$i]['auth_type'] = 'cookie';
$cfg['Servers'][$i]['host'] = 'localhost';
$cfg['Servers'][$i]['connect_type'] = 'tcp';
$cfg['Servers'][$i]['compress'] = false;
-/* Select mysqli if your server has it */
-$cfg['Servers'][$i]['extension'] = 'mysql';
+/* Select mysql if your server does not have mysqli */
+$cfg['Servers'][$i]['extension'] = 'mysqli';
$cfg['Servers'][$i]['AllowNoPassword'] = false;
/*