1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-31 21:41:28 +00:00

remove support for legacy mysql driver

This commit is contained in:
Andrew Dolgov
2016-08-21 14:03:35 +03:00
parent a005ebb693
commit e54eb40a8c
4 changed files with 10 additions and 107 deletions

View File

@@ -118,7 +118,7 @@
array_push($errors, "PHP support for JSON is required, but was not found.");
}
if (DB_TYPE == "mysql" && !function_exists("mysql_connect") && !function_exists("mysqli_connect")) {
if (DB_TYPE == "mysql" && !function_exists("mysqli_connect")) {
array_push($errors, "PHP support for MySQL is required for configured DB_TYPE in config.php.");
}