diff options
author | Jakub Senko <jakubsenko@gmail.com> | 2016-11-13 18:08:35 +0100 |
---|---|---|
committer | Jakub Senko <jakubsenko@gmail.com> | 2016-11-16 17:59:28 +0100 |
commit | e974f338afb86c065e9b160363bc2e6156f8566d (patch) | |
tree | e0eddcc8228c5662fbd96e136483fb47e8e365a1 /phpBB/phpbb/install/helper | |
parent | 9c7e8c2dc5607a594f1e8d3a633dc686e8c002a7 (diff) | |
download | forums-e974f338afb86c065e9b160363bc2e6156f8566d.tar forums-e974f338afb86c065e9b160363bc2e6156f8566d.tar.gz forums-e974f338afb86c065e9b160363bc2e6156f8566d.tar.bz2 forums-e974f338afb86c065e9b160363bc2e6156f8566d.tar.xz forums-e974f338afb86c065e9b160363bc2e6156f8566d.zip |
[ticket/14739] Remove SQLite 2.8.x database driver
PHPBB3-14739
Diffstat (limited to 'phpBB/phpbb/install/helper')
-rw-r--r-- | phpBB/phpbb/install/helper/database.php | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/phpBB/phpbb/install/helper/database.php b/phpBB/phpbb/install/helper/database.php index be0c953d28..192f0a3654 100644 --- a/phpBB/phpbb/install/helper/database.php +++ b/phpBB/phpbb/install/helper/database.php @@ -90,15 +90,6 @@ class database 'AVAILABLE' => true, '2.0.x' => true, ), - 'sqlite' => array( - 'LABEL' => 'SQLite', - 'SCHEMA' => 'sqlite', - 'MODULE' => 'sqlite', - 'DELIM' => ';', - 'DRIVER' => 'phpbb\db\driver\sqlite', - 'AVAILABLE' => true, - '2.0.x' => false, - ), 'sqlite3' => array( 'LABEL' => 'SQLite3', 'SCHEMA' => 'sqlite', @@ -390,14 +381,6 @@ class database ); } break; - case 'sqlite': - if (version_compare($db->sql_server_info(true), '2.8.2', '<')) - { - $errors[] = array( - 'title' => 'INST_ERR_DB_NO_SQLITE', - ); - } - break; case 'sqlite3': if (version_compare($db->sql_server_info(true), '3.6.15', '<')) { |