X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=inc%2Fheader.php;h=b6d3f52b6e27f0ccb8a58b28e74e96a000b5c4d7;hb=d0c792100bf4b67acd1824860204929c1540f6fb;hp=1031590a81c4746f0a56a7933c295454fb0541d8;hpb=e6e3183f794b385f5acc38b371c220cc35cdac38;p=mailer.git diff --git a/inc/header.php b/inc/header.php index 1031590a81..b6d3f52b6e 100644 --- a/inc/header.php +++ b/inc/header.php @@ -80,7 +80,7 @@ if (($header != "1") && ($header != "2")) { // Remember title in constant for the template define('__PAGE_TITLE', html_entity_decode($TITLE)); - } elseif ((!defined('mxchange_installed')) || (!defined('admin_registered'))) { + } elseif ((!isBooleanConstantAndTrue('mxchange_installed')) || (!isBooleanConstantAndTrue('admin_registered'))) { // Load language file because it was missing in installation finalizer step... *sigh* require_once(sprintf("%sinc/language/install_%s.php", PATH, @@ -96,7 +96,7 @@ if (($header != "1") && ($header != "2")) { // Do not add the fatal message in installation mode if (basename($_SERVER['PHP_SELF']) != "install.php") ADD_FATAL(NO_CONFIG_FOUND); } - } + } // END - if // Save some little memory unset($TITLE); @@ -104,13 +104,16 @@ if (($header != "1") && ($header != "2")) { // Output page header code LOAD_TEMPLATE("page_header"); - // Include meta data here - LOAD_TEMPLATE("metadata"); + // Include meta data in "guest" module + if ($GLOBALS['module'] == "index") { + // Load meta data template + LOAD_TEMPLATE("metadata"); - // Add meta description to header - if ((isBooleanConstantAndTrue('mxchange_installed')) && (isBooleanConstantAndTrue('admin_registered')) && ($GLOBALS['module'] != "admin") && ($GLOBALS['module'] != "login") && (isset($db)) && (isset($link))) { - // Add meta description not in admin and login module and when the script is installed - META_DESCRIPTION($GLOBALS['module'], $GLOBALS['what']); + // Add meta description to header + if ((isBooleanConstantAndTrue('mxchange_installed')) && (isBooleanConstantAndTrue('admin_registered')) && (isset($db)) && (is_resource($link))) { + // Add meta description not in admin and login module and when the script is installed + META_DESCRIPTION($GLOBALS['module'], $GLOBALS['what']); + } // END - if } // END - if // Include more header data here