X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fguest%2Faction-admin.php;h=68567e02b2f5be23a2f333a728dc21ddd02910bc;hb=ebeaf2be7fe57e80004d85046652f4109c7eceb0;hp=7eaf1cdc794349ecbe2871a0440881fdd59ea6ae;hpb=d0ab0382dd73638f0bc13a1a3d6f117ec11a203e;p=mailer.git diff --git a/inc/modules/guest/action-admin.php b/inc/modules/guest/action-admin.php index 7eaf1cdc79..68567e02b2 100644 --- a/inc/modules/guest/action-admin.php +++ b/inc/modules/guest/action-admin.php @@ -32,25 +32,21 @@ ************************************************************************/ // 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); } -if (GET_ACTION("guest", $GLOBALS['what']) == "admin") -{ +if (GET_ACTION("guest", $GLOBALS['what']) == "admin") { // Only when one admin link is clicked... - $INC = sprintf(PATH."inc/modules/guest/what-%s.php", $GLOBALS['what']); - if (file_exists($INC)) - { - // Ok, we finally load the guest action module + $INC = sprintf("%sinc/modules/guest/what-%s.php", PATH, $GLOBALS['what']); + if (FILE_READABLE($INC)) { + // Ok, we finally load the guest action module include($INC); - } - else - { + } else { ADD_FATAL(GUEST_404_ACTION_1.$GLOBALS['what'].GUEST_404_ACTION_2); } -} +} // END - if + // ?>