diff options
author | nikrou <nikrou@piwigo.org> | 2010-05-07 09:09:44 +0000 |
---|---|---|
committer | nikrou <nikrou@piwigo.org> | 2010-05-07 09:09:44 +0000 |
commit | acc0b274128a6c87f48ec0d523065fe05856307c (patch) | |
tree | 50b0f32fde11c3b918e83e91bc623d61c8722783 /include/dblayer/dblayers.inc.php | |
parent | 7c460b8258ef21bdd4a9aa12e8107bbce61ab99e (diff) |
SQLite availabilty must be check by existence of SQLite3 class
git-svn-id: http://piwigo.org/svn/trunk@6092 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'include/dblayer/dblayers.inc.php')
-rw-r--r-- | include/dblayer/dblayers.inc.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/dblayer/dblayers.inc.php b/include/dblayer/dblayers.inc.php index cfa543998..a434392d1 100644 --- a/include/dblayer/dblayers.inc.php +++ b/include/dblayer/dblayers.inc.php @@ -31,7 +31,7 @@ $dblayers['pgsql'] = array('engine' => 'PostgreSQL', ); $dblayers['sqlite'] = array('engine' => 'SQLite', - 'function_available' => 'sqlite_open' + 'class_available' => 'SQLite3' ); $dblayers['pdo-sqlite'] = array('engine' => 'SQLite', |