From 2b21b97ef0b13c958ed53c7adf10f02f6c4c434f Mon Sep 17 00:00:00 2001 From: Aleksander Machniak <alec@alec.pl> Date: Tue, 10 Jul 2012 04:07:21 -0400 Subject: [PATCH] Use file_get_contents() to make code simpler and to fix possible infinite loop --- installer/check.php | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/installer/check.php b/installer/check.php index e5f3026..4428bb8 100644 --- a/installer/check.php +++ b/installer/check.php @@ -45,7 +45,9 @@ ); $optional_checks = array( - 'date.timezone' => '-NOTEMPTY-', + // required for utils/modcss.inc, should we require this? + 'allow_url_fopen' => 1, + 'date.timezone' => '-NOTEMPTY-', ); $source_urls = array( -- Gitblit v1.9.1