]> git.wh0rd.org - tt-rss.git/commitdiff
installer: mention lack of curl
authorAndrew Dolgov <fox@fakecake.org>
Tue, 2 Apr 2013 09:24:49 +0000 (13:24 +0400)
committerAndrew Dolgov <fox@fakecake.org>
Tue, 2 Apr 2013 09:24:49 +0000 (13:24 +0400)
install/index.php

index 6e141f077c3c7c7884aefa72a8b4842f20a989ef..3deb7ad23575d14404871f5c46e9315d95661a30 100644 (file)
                        exit;
                }
 
-       ?>
+               $notices = array();
+
+               if (!function_exists("curl_init")) {
+                       array_push($notices, "It is highly recommended to enable support for CURL in PHP.");
+               }
+
+               if (count($notices) > 0) {
+                       print_notice("Configuration check succeeded with minor problems:");
+
+                       print "<ul>";
 
-       <?php print_notice("Configuration check succeeded."); ?>
+                       foreach ($notices as $notice) {
+                               print "<li>$notice</li>";
+                       }
+
+                       print "</ul>";
+               } else {
+                       print_notice("Configuration check succeeded.");
+               }
+
+       ?>
 
        <h2>Checking database</h2>