Skip to content

Commit 6f94110

Browse files
committed
Fixed array to string conversion
1 parent 7d3d3e3 commit 6f94110

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

phpmyfaq/inc/PMF/System.php

+7-7
Original file line numberDiff line numberDiff line change
@@ -86,13 +86,13 @@ class PMF_System
8686
* @var array
8787
*/
8888
private $_supportedDatabases = array(
89-
'mysqli' => array(self::VERSION_MINIMUM_PHP, 'MySQL 5.x / Percona Server 5.x / MariaDB 5.x'),
90-
'pdo_mysql' => array(self::VERSION_MINIMUM_PHP, 'MySQL 5.x / Percona Server 5.x / MariaDB 5.x (PDO_MYSQL, experimental)'),
91-
'pgsql' => array(self::VERSION_MINIMUM_PHP, 'PostgreSQL 9.x'),
92-
'sqlite' => array(self::VERSION_MINIMUM_PHP, 'SQLite (deprecated)'),
93-
'sqlite3' => array(self::VERSION_MINIMUM_PHP, 'SQLite 3 (experimental)'),
94-
'mssql' => array(self::VERSION_MINIMUM_PHP, 'MS SQL Server 2012 and later (deprecated)'),
95-
'sqlsrv' => array(self::VERSION_MINIMUM_PHP, 'MS SQL Server 2012 Driver for PHP')
89+
'mysqli' => 'MySQL 5.x / Percona Server 5.x / MariaDB 5.x',
90+
'pdo_mysql' => 'MySQL 5.x / Percona Server 5.x / MariaDB 5.x (PDO_MYSQL, experimental)',
91+
'pgsql' => 'PostgreSQL 9.x',
92+
'sqlite' => 'SQLite (deprecated)',
93+
'sqlite3' => 'SQLite 3 (experimental)',
94+
'mssql' => 'MS SQL Server 2012 and later (deprecated)',
95+
'sqlsrv' => 'MS SQL Server 2012 Driver for PHP'
9696
);
9797

9898
/**

0 commit comments

Comments
 (0)