another few "->'
authorArun Persaud <arun@nubati.net>
Thu, 20 Sep 2012 05:58:39 +0000 (22:58 -0700)
committerArun Persaud <arun@nubati.net>
Thu, 20 Sep 2012 05:58:39 +0000 (22:58 -0700)
include/functions.php

index 344d99eea479c71257f3f5e8d65aa1f0cef259fc..037da48f97bc233abe64f84ada2710ab0e7988e4 100644 (file)
@@ -46,20 +46,20 @@ function config_check()
   if(!isset($ADMIN_EMAIL))
     {
       output_header();
-      echo "<h1>Setup not completed</h1>";
-      echo "You need to set \$ADMIN_EMAIL in config.php. ".
-       "If something goes wrong an email will be send to this address.";
+      echo '<h1>Setup not completed</h1>';
+      echo 'You need to set $ADMIN_EMAIL in config.php. '.
+       'If something goes wrong an email will be send to this address.';
       output_footer();
       exit();
     }
   if(!isset($DB_work))
     {
       output_header();
-      echo "<h1>Setup not completed</h1>";
-      echo "You need to set \$DB_work in config.php. ".
-       "If this is set to anything else than 0, the game will be suspended and one can work safely on the database. ".
-       "A message will be displayed that it will probably take about N minutes, with N being the number \$DB_work is set to. ".
-       "The default should be 0 for the game to work.";
+      echo '<h1>Setup not completed</h1>';
+      echo 'You need to set $DB_work in config.php. '.
+       'If this is set to anything else than 0, the game will be suspended and one can work safely on the database. '.
+       'A message will be displayed that it will probably take about N minutes, with N being the number $DB_work is set to. '.
+       'The default should be 0 for the game to work.';
       output_footer();
       exit();
     }