add sanity check for mime_content_type()
This commit is contained in:
parent
91f49ba17d
commit
8716ec20d6
1 changed files with 4 additions and 0 deletions
|
@ -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.");
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue