From 4d7cfcb52d3b5ef4c8eb2c511ddbea230f9fa434 Mon Sep 17 00:00:00 2001 From: Frederic Guillot Date: Wed, 17 Jul 2013 18:51:42 -0400 Subject: [PATCH] Bugfix #91 --- check_setup.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/check_setup.php b/check_setup.php index 9931a4f..751f194 100644 --- a/check_setup.php +++ b/check_setup.php @@ -38,9 +38,9 @@ if (! extension_loaded('pdo_sqlite')) { } // Check for curl -if (! function_exists('curl_init') || ! ini_get('allow_url_fopen')) { +if (! function_exists('curl_init') && ! ini_get('allow_url_fopen')) { - die('You must have "allow_url_fopen=1" or curl extension installed'); + die('You must have "allow_url_fopen=On" or curl extension installed'); } // Check if /data is writeable