diff options
author | Marc Alexander <admin@m-a-styles.de> | 2019-10-06 12:07:35 +0200 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2019-10-06 12:07:35 +0200 |
commit | bd02c5bd085e957aa4341e7fc2df2199081ab069 (patch) | |
tree | ea737eab62dc1f56bb3760542b0f27095f6eca64 /phpBB/includes/functions_convert.php | |
parent | 68c197fd6012b5435a29a288113b957e7957de59 (diff) | |
download | forums-bd02c5bd085e957aa4341e7fc2df2199081ab069.tar forums-bd02c5bd085e957aa4341e7fc2df2199081ab069.tar.gz forums-bd02c5bd085e957aa4341e7fc2df2199081ab069.tar.bz2 forums-bd02c5bd085e957aa4341e7fc2df2199081ab069.tar.xz forums-bd02c5bd085e957aa4341e7fc2df2199081ab069.zip |
[ticket/16051] Remove mysql driver as it's no longer supported in PHP >= 7.0
PHPBB3-16051
Diffstat (limited to 'phpBB/includes/functions_convert.php')
-rw-r--r-- | phpBB/includes/functions_convert.php | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/phpBB/includes/functions_convert.php b/phpBB/includes/functions_convert.php index 2cfbe9541d..13e01afe51 100644 --- a/phpBB/includes/functions_convert.php +++ b/phpBB/includes/functions_convert.php @@ -1647,11 +1647,6 @@ function mass_auth($ug_type, $forum_id, $ug_id, $acl_list, $setting = ACL_NO) case 'insert': switch ($db->get_sql_layer()) { - case 'mysql': - case 'mysql4': - $sql = 'VALUES ' . implode(', ', preg_replace('#^(.*?)$#', '(\1)', $sql_subary)); - break; - case 'sqlite3': case 'mssqlnative': $sql = implode(' UNION ALL ', preg_replace('#^(.*?)$#', 'SELECT \1', $sql_subary)); |