summaryrefslogtreecommitdiff
path: root/include/sanity_check.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2013-03-19 01:10:02 +0400
committerAndrew Dolgov <[email protected]>2013-03-19 01:10:02 +0400
commite2b0054be49b513a63b3870fcc65f45f30b5b338 (patch)
tree3a92be15ea9ce3f986a4e4f848397866fd6d45bd /include/sanity_check.php
parent82d69730cb660d2d81ac7bdadb7faddb5d2363b2 (diff)
experimental patch to enable compatibility with php safe_mode
Diffstat (limited to 'include/sanity_check.php')
-rw-r--r--include/sanity_check.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/sanity_check.php b/include/sanity_check.php
index 4925486a3..0373196b3 100644
--- a/include/sanity_check.php
+++ b/include/sanity_check.php
@@ -125,9 +125,9 @@
array_push($errors, "PHP support for iconv is required to handle multiple charsets.");
}
- if (ini_get("safe_mode")) {
+ /* if (ini_get("safe_mode")) {
array_push($errors, "PHP safe mode setting is not supported.");
- }
+ } */
if ((PUBSUBHUBBUB_HUB || PUBSUBHUBBUB_ENABLED) && !function_exists("curl_init")) {
array_push($errors, "PHP support for CURL is required for PubSubHubbub.");