1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 22:10:45 +02:00

[ticket/16051] Automatically convert mysql driver to mysqli

PHPBB3-16051
This commit is contained in:
Marc Alexander
2019-10-06 22:12:46 +02:00
parent bd02c5bd08
commit e8b4304c1b
2 changed files with 7 additions and 1 deletions

View File

@@ -155,6 +155,12 @@ class config_php_file
return $dbms;
}
// Force use of mysqli when specifying mysql
if (preg_match('/(phpbb\\\db\\\driver\\\)?mysql$/i', $dbms))
{
return 'phpbb\db\driver\mysqli';
}
throw new \RuntimeException("You have specified an invalid dbms driver: $dbms");
}
}