summaryrefslogtreecommitdiff
path: root/sanity_check.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2010-12-27 15:45:28 +0300
committerAndrew Dolgov <[email protected]>2010-12-27 15:45:28 +0300
commit32a5e3444dc0cfc1c8045586b4582494853a647c (patch)
tree669f9508610b20342579fe4a2f3613a1ae37ad2f /sanity_check.php
parent86027a078d574b3b88b19c058fd9cb6925ee9ebc (diff)
rename USE_CURL_FOR_ICONS to USE_CURL
Diffstat (limited to 'sanity_check.php')
-rw-r--r--sanity_check.php8
1 files changed, 6 insertions, 2 deletions
diff --git a/sanity_check.php b/sanity_check.php
index a33b7c19e..567be65ee 100644
--- a/sanity_check.php
+++ b/sanity_check.php
@@ -41,8 +41,8 @@
exit;
}
- if (USE_CURL_FOR_ICONS && ! function_exists("curl_init")) {
- print "<b>Fatal Error</b>: You have enabled USE_CURL_FOR_ICONS, but your PHP
+ if (USE_CURL && ! function_exists("curl_init")) {
+ print "<b>Fatal Error</b>: You have enabled USE_CURL, but your PHP
doesn't seem to support CURL functions.";
exit;
}
@@ -138,6 +138,10 @@
$err_msg = "php.ini: Safe mode is not supported. If you wish to continue, remove this test from sanity_check.php and proceeed at your own risk. Please note that your bug reports will not be accepted or reviewed.";
}
+ if (defined('USE_CURL_FOR_ICONS')) {
+ $err_msg = "config: USE_CURL_FOR_ICONS has been renamed to USE_CURL.";
+ }
+
if ($err_msg) {
print "<b>Fatal Error</b>: $err_msg\n";
exit;