aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/install
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2016-11-17 09:56:51 +0100
committerMarc Alexander <admin@m-a-styles.de>2016-11-17 09:56:51 +0100
commit9343317121504ef6b558f81126ce93adb6f33ecd (patch)
tree272aa875857cad890a8433f4947d9090ffb6987c /phpBB/phpbb/install
parentc6bed98cf508f4dfd6e0ec1762768b238a1c6ee3 (diff)
parente974f338afb86c065e9b160363bc2e6156f8566d (diff)
downloadforums-9343317121504ef6b558f81126ce93adb6f33ecd.tar
forums-9343317121504ef6b558f81126ce93adb6f33ecd.tar.gz
forums-9343317121504ef6b558f81126ce93adb6f33ecd.tar.bz2
forums-9343317121504ef6b558f81126ce93adb6f33ecd.tar.xz
forums-9343317121504ef6b558f81126ce93adb6f33ecd.zip
Merge remote-tracking branch 'senky/ticket/14739' into 3.2.x
Diffstat (limited to 'phpBB/phpbb/install')
-rw-r--r--phpBB/phpbb/install/helper/database.php17
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', '<'))
{