summaryrefslogtreecommitdiffstats
path: root/include/functions.php
diff options
context:
space:
mode:
authorArun Persaud <arun@nubati.net>2012-09-19 22:53:28 -0700
committerArun Persaud <arun@nubati.net>2012-09-19 22:53:28 -0700
commit521ac3b392846c6ccef44c19cc82d63c47432297 (patch)
tree8f9da265e68787c6d693b83a67cfe4ed96b48f2c /include/functions.php
parent29c87287965ad3b88ffd49419d7a7423feda00fa (diff)
downloade-DoKo-521ac3b392846c6ccef44c19cc82d63c47432297.tar.gz
e-DoKo-521ac3b392846c6ccef44c19cc82d63c47432297.tar.bz2
e-DoKo-521ac3b392846c6ccef44c19cc82d63c47432297.zip
replaces some more " with '
Diffstat (limited to 'include/functions.php')
-rw-r--r--include/functions.php8
1 files changed, 4 insertions, 4 deletions
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 "<h1>Setup not completed</h1>";
- echo "You need to set \$ADMIN_NAME in config.php.";
+ echo '<h1>Setup not completed</h1>';
+ echo 'You need to set $ADMIN_NAME in config.php.';
output_footer();
exit();
}