Several more constants rewritten to getConfig()
[mailer.git] / inc / header.php
index aa10f9daed701f9be923f9ea6c5b0b46976067d9..da0f68cfe6ff01f6d3840fd6547486e23ec6ba32 100644 (file)
@@ -65,7 +65,7 @@ if (($GLOBALS['header_sent'] != '1') && ($GLOBALS['header_sent'] != '2')) {
                                } // END - if
 
                                // Add main title
-                               $TITLE .= constant('MAIN_TITLE');
+                               $TITLE .= getConfig('MAIN_TITLE');
 
                                // Add title of module? (middle decoration will also be added!)
                                if ((getConfig('enable_mod_title') == 'Y') || ((!isWhatSet()) && (!isActionSet())) || (getModule() == 'admin')) {
@@ -85,7 +85,7 @@ if (($GLOBALS['header_sent'] != '1') && ($GLOBALS['header_sent'] != '2')) {
                                define('__PAGE_TITLE', $TITLE);
                        } elseif ((isInstalled()) && (!isAdminRegistered())) {
                                // Installed but no admin registered
-                               define('__PAGE_TITLE', sprintf(getMessage('SETUP_OF_MXCHANGE'), constant('MAIN_TITLE')));
+                               define('__PAGE_TITLE', sprintf(getMessage('SETUP_OF_MXCHANGE'), getConfig('MAIN_TITLE')));
                        } elseif ((!isInstalled()) || (!isAdminRegistered())) {
                                // Installation mode
                                define('__PAGE_TITLE', getMessage('INSTALLATION_OF_MXCHANGE'));