]> git.mxchange.org Git - mailer.git/blobdiff - inc/install-inc.php
A lot rewrites from double-quote to single-quote, some fixes for extension handling...
[mailer.git] / inc / install-inc.php
index 7312a401f0d158b32cc1d9f13280d854d08b9738..eea54299728eeef13f7aa9e3fdd7a1dd21463fc4 100644 (file)
@@ -348,12 +348,12 @@ if ((!isInstalled()) || (!isAdminRegistered()))
                        } // END - if
 
                        if (getTotalFatalErrors() > 0) {
-                               $OUT = "";
+                               $OUT = '';
                                foreach (getFatalArray() as $value) {
                                        $OUT .= "    <li>".$value."</li>\n";
                                } // END foreach
                                define('__FATAL_ERROR_LI', $OUT);
-                               $OUT = "";
+                               $OUT = '';
                                foreach ($mysql as $key => $value) {
                                        $OUT .= "    <input type=\"hidden\" name=\"mysql[".$key."]\" value=\"".$value."\">\n";
                                } // END foreach
@@ -366,18 +366,18 @@ if ((!isInstalled()) || (!isAdminRegistered()))
                                define('__SMTP_PASS'    , REQUEST_POST('smtp_pass1'));
 
                                // Load template
-                               LOAD_TEMPLATE("install_fatal_errors");
+                               LOAD_TEMPLATE('install_fatal_errors');
                        } else {
                                // Installation is done!
-                               LOAD_URL("install.php?page=finalize");
+                               LOAD_URL('install.php?page=finalize');
                        }
                } elseif (isInstalled()) {
                        // Redirection after writing data... :-)
-                       LOAD_TEMPLATE("install_finished");
+                       LOAD_TEMPLATE('install_finished');
                } else {
                        // Something goes wrong during installation! :-(
                        addFatalMessage(__FILE__, __LINE__, getMessage('INSTALL_FINALIZER_FAILED'));
-                       LOAD_INC("inc/fatal_errors.php");
+                       LOAD_INC('inc/fatal_errors.php');
                }
                break;