summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xinclude/sanity_check.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/sanity_check.php b/include/sanity_check.php
index 964dce03c..39962219f 100755
--- a/include/sanity_check.php
+++ b/include/sanity_check.php
@@ -149,6 +149,10 @@
array_push($errors, "PHP safe mode setting is obsolete and not supported by tt-rss.");
}
+ if (!function_exists("mime_content_type")) {
+ array_push($errors, "PHP function mime_content_type() is missing, try enabling fileinfo module.");
+ }
+
if (!class_exists("DOMDocument")) {
array_push($errors, "PHP support for DOMDocument is required, but was not found.");
}