1
0
mirror of https://tt-rss.org/git/tt-rss.git synced 2024-06-26 11:59:02 +02:00

Merge branch 'master' of github.com:gothfox/Tiny-Tiny-RSS

This commit is contained in:
Andrew Dolgov 2013-04-17 21:40:13 +04:00
commit fa8e7ea261

View File

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