SF.net SVN: postfixadmin: [112] trunk/functions.inc.php
Brought to you by:
christian_boltz,
gingerdog
|
From: <Gin...@us...> - 2007-10-02 12:10:19
|
Revision: 112
http://postfixadmin.svn.sourceforge.net/postfixadmin/?rev=112&view=rev
Author: GingerDog
Date: 2007-10-02 05:06:10 -0700 (Tue, 02 Oct 2007)
Log Message:
-----------
functions.inc.php: mysqli is a valid database_type as well!
Modified Paths:
--------------
trunk/functions.inc.php
Modified: trunk/functions.inc.php
===================================================================
--- trunk/functions.inc.php 2007-10-02 11:58:46 UTC (rev 111)
+++ trunk/functions.inc.php 2007-10-02 12:06:10 UTC (rev 112)
@@ -1330,7 +1330,7 @@
}
return 'false';
}
- elseif($CONF['database_type'] == 'mysql') {
+ elseif($CONF['database_type'] == 'mysql' || $CONF['database_type'] == 'mysqli') {
if($bool) {
return 1;
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|