1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 19:05:55 +00:00

add sanity check for PDO

This commit is contained in:
Andrew Dolgov
2017-12-03 13:40:09 +03:00
parent 83303f20e0
commit 97a5e13370

View File

@@ -139,6 +139,10 @@
array_push($errors, "PHP support for PostgreSQL is required for configured DB_TYPE in config.php");
}
if (!class_exists("PDO")) {
array_push($errors, "PHP support for PDO (Portable Data Objects) is required but was not found.");
}
if (!function_exists("mb_strlen")) {
array_push($errors, "PHP support for mbstring functions is required but was not found.");
}