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/includes/functions.php | |
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/includes/functions.php')
-rw-r--r-- | phpBB/includes/functions.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/functions.php b/phpBB/includes/functions.php index bbd3e524cc..8996c0e766 100644 --- a/phpBB/includes/functions.php +++ b/phpBB/includes/functions.php @@ -3522,7 +3522,7 @@ function obtain_guest_count($item_id = 0, $item = 'forum') // Get number of online guests - if ($db->get_sql_layer() === 'sqlite' || $db->get_sql_layer() === 'sqlite3') + if ($db->get_sql_layer() === 'sqlite3') { $sql = 'SELECT COUNT(session_ip) as num_guests FROM ( |