diff options
author | Marc Alexander <admin@m-a-styles.de> | 2019-10-13 12:29:34 +0200 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2019-10-13 12:29:34 +0200 |
commit | 8c2d0c8c3639bbfc2799d372cc7aafcb62fc4b8a (patch) | |
tree | 14dfe3014300268e2f775f86075fd89d5552a004 /phpBB/includes/functions_convert.php | |
parent | 6f48b3c044a5339bc019f355db490e1a53b51fdc (diff) | |
parent | e8b4304c1bbe35784b4cac5dd4059d6a4ac2dcac (diff) | |
download | forums-8c2d0c8c3639bbfc2799d372cc7aafcb62fc4b8a.tar forums-8c2d0c8c3639bbfc2799d372cc7aafcb62fc4b8a.tar.gz forums-8c2d0c8c3639bbfc2799d372cc7aafcb62fc4b8a.tar.bz2 forums-8c2d0c8c3639bbfc2799d372cc7aafcb62fc4b8a.tar.xz forums-8c2d0c8c3639bbfc2799d372cc7aafcb62fc4b8a.zip |
Merge pull request #5708 from marc1706/ticket/16051
[ticket/16051] Remove mysql driver as it's no longer supported in PHP >= 7.0
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)); |