X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fmodules%2Fguest%2Faction-sponsor.php;h=4f7c9b526e5f10ab4d5cd3f8da1e39132d598652;hp=3485b82deb46c35253c0dc2e405e16ef83d75d18;hb=963e55ca1ea79e255f235e359cde9f7862191dc5;hpb=9beb33ae0c3194b05d172508768a833b1b69af2f diff --git a/inc/modules/guest/action-sponsor.php b/inc/modules/guest/action-sponsor.php index 3485b82deb..4f7c9b526e 100644 --- a/inc/modules/guest/action-sponsor.php +++ b/inc/modules/guest/action-sponsor.php @@ -31,8 +31,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); } @@ -41,15 +40,13 @@ if (ereg(basename(__FILE__), $_SERVER['PHP_SELF'])) ADD_DESCR("guest", basename(__FILE__)); // Load the include file -$INC = PATH."inc/modules/guest/what-".$what.".php"; -if (file_exists($INC)) -{ +$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 { + ADD_FATAL(GUEST_404_ACTION_1.$GLOBALS['what'].GUEST_404_ACTION_2); } - else -{ - $FATAL[] = GUEST_404_ACTION_1.$what.GUEST_404_ACTION_2; -} + // ?>