summaryrefslogtreecommitdiff
path: root/install
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2015-11-19 20:05:17 +0300
committerAndrew Dolgov <[email protected]>2015-11-19 20:05:17 +0300
commit4c46702672631c0cf84067d6f2c55b3bfda1db6f (patch)
treec9e69577fab4ce761043d696e289261afb632452 /install
parent6497fb65b439f02cf145c2d0eb4e40803641fbb4 (diff)
drop support for (obsolete, removed from recent php versions) php safe_mode setting
remove ugly hacks for curl + open_basedir combination breaking support for http redirects
Diffstat (limited to 'install')
-rwxr-xr-x[-rw-r--r--]install/index.php10
1 files changed, 3 insertions, 7 deletions
diff --git a/install/index.php b/install/index.php
index e18583436..959dc6c0e 100644..100755
--- a/install/index.php
+++ b/install/index.php
@@ -67,17 +67,13 @@
array_push($errors, "PHP support for hash() function is required but was not found.");
}
- if (!function_exists("ctype_lower")) {
- array_push($errors, "PHP support for ctype functions are required by HTMLPurifier.");
- }
-
if (!function_exists("iconv")) {
array_push($errors, "PHP support for iconv is required to handle multiple charsets.");
}
- /* if (ini_get("safe_mode")) {
- array_push($errors, "PHP safe mode setting is not supported.");
- } */
+ if (ini_get("safe_mode")) {
+ array_push($errors, "PHP safe mode setting is obsolete and not supported by tt-rss.");
+ }
if (!class_exists("DOMDocument")) {
array_push($errors, "PHP support for DOMDocument is required, but was not found.");