]> git.mxchange.org Git - mailer.git/blobdiff - index.php
All database names are now 'back-ticked' and constant _MYSQL_PREFIX is wrapped. Partl...
[mailer.git] / index.php
index 9b98c0f1d381013fdffdb01abe0869d1131cd38a..d5ee879dcd5e69862a39dacf9cc35f2c82978537 100644 (file)
--- a/index.php
+++ b/index.php
@@ -59,10 +59,10 @@ if (isBooleanConstantAndTrue('mxchange_installed')) {
                // Is the index page configured for redirect pr not?
                if (getConfig('index_cookie') > 0) {
                        // Set cookie and remeber it for specified time
-                       set_session("visited", "true");
+                       set_session('visited', "true");
                } elseif (isSessionVariableSet('visited')) {
                        // Remove cookie when admin set 0 in setup
-                       set_session("visited", "");
+                       set_session('visited', "");
                }
 
                // Template laden
@@ -83,7 +83,7 @@ if (isBooleanConstantAndTrue('mxchange_installed')) {
        // Footer
        require(PATH."inc/footer.php");
 } else {
-       // You have to configure first!
+       // You have to install first!
        LOAD_URL("install.php");
 }