From: Arun Persaud Date: Thu, 20 Sep 2012 05:53:28 +0000 (-0700) Subject: replaces some more " with ' X-Git-Url: https://git.nubati.net/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=521ac3b392846c6ccef44c19cc82d63c47432297;p=e-DoKo.git replaces some more " with ' --- diff --git a/include/functions.php b/include/functions.php index 8bcdede..344d99e 100644 --- a/include/functions.php +++ b/include/functions.php @@ -30,16 +30,16 @@ function config_check() /* check if some variables are set in the config file, else set defaults */ if(!isset($EmailName)) - $EmailName="[DoKo] "; + $EmailName='[DoKo] '; if(isset($EMAIL_REPLY)) { - ini_set("sendmail_from",$EMAIL_REPLY); + ini_set('sendmail_from',$EMAIL_REPLY); } if(!isset($ADMIN_NAME)) { output_header(); - echo "

Setup not completed

"; - echo "You need to set \$ADMIN_NAME in config.php."; + echo '

Setup not completed

'; + echo 'You need to set $ADMIN_NAME in config.php.'; output_footer(); exit(); } diff --git a/index.php b/index.php index 51aa24d..0001408 100644 --- a/index.php +++ b/index.php @@ -45,7 +45,7 @@ if($DBopen<0) echo "Database error, can't connect... Please wait a while and try again. ". "If the problem doesn't go away feel free to contact $ADMIN_NAME at $ADMIN_EMAIL."; else if ($DBopen == -2) - echo "Wrong database version, please update your database using the update.php script."; + echo 'Wrong database version, please update your database using the update.php script.'; output_footer(); exit();