X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fheader.php;h=fe18f73c4e5add995bac2de8534de4b4f3f6009f;hb=4e7273a155c9afa62cf0e094f96e206455b8bdde;hp=b64cebb75e38e33240eca0ddff17c25d259a1e9d;hpb=541d2d03d7fac53d38b5d4236d1c35fb5f1f526b;p=mailer.git diff --git a/inc/header.php b/inc/header.php index b64cebb75e..fe18f73c4e 100644 --- a/inc/header.php +++ b/inc/header.php @@ -34,7 +34,7 @@ ************************************************************************/ // Some security stuff... -if (ereg(basename(__FILE__), $_SERVER['PHP_SELF'])) { +if (!defined('__SECURITY')) { $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php"; require($INC); } @@ -104,13 +104,15 @@ 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_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