Skip to content

Commit

Permalink
Fixed array to string conversion
Browse files Browse the repository at this point in the history
  • Loading branch information
thorsten committed May 2, 2014
1 parent 7d3d3e3 commit 6f94110
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions phpmyfaq/inc/PMF/System.php
Original file line number Diff line number Diff line change
Expand Up @@ -86,13 +86,13 @@ class PMF_System
* @var array
*/
private $_supportedDatabases = array(
'mysqli' => array(self::VERSION_MINIMUM_PHP, 'MySQL 5.x / Percona Server 5.x / MariaDB 5.x'),
'pdo_mysql' => array(self::VERSION_MINIMUM_PHP, 'MySQL 5.x / Percona Server 5.x / MariaDB 5.x (PDO_MYSQL, experimental)'),
'pgsql' => array(self::VERSION_MINIMUM_PHP, 'PostgreSQL 9.x'),
'sqlite' => array(self::VERSION_MINIMUM_PHP, 'SQLite (deprecated)'),
'sqlite3' => array(self::VERSION_MINIMUM_PHP, 'SQLite 3 (experimental)'),
'mssql' => array(self::VERSION_MINIMUM_PHP, 'MS SQL Server 2012 and later (deprecated)'),
'sqlsrv' => array(self::VERSION_MINIMUM_PHP, 'MS SQL Server 2012 Driver for PHP')
'mysqli' => 'MySQL 5.x / Percona Server 5.x / MariaDB 5.x',
'pdo_mysql' => 'MySQL 5.x / Percona Server 5.x / MariaDB 5.x (PDO_MYSQL, experimental)',
'pgsql' => 'PostgreSQL 9.x',
'sqlite' => 'SQLite (deprecated)',
'sqlite3' => 'SQLite 3 (experimental)',
'mssql' => 'MS SQL Server 2012 and later (deprecated)',
'sqlsrv' => 'MS SQL Server 2012 Driver for PHP'
);

/**
Expand Down

0 comments on commit 6f94110

Please sign in to comment.