X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fmodules%2Fguest%2Faction-sponsor.php;h=4f7c9b526e5f10ab4d5cd3f8da1e39132d598652;hp=de40dbc7152aea6df5e38695bf1a0d4aba5773db;hb=ca7455674c0f02d34cbfc22a823393ba629a5160;hpb=d18075f375db1b9db40773cdf80a5d6f2c36cd3a diff --git a/inc/modules/guest/action-sponsor.php b/inc/modules/guest/action-sponsor.php index de40dbc715..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); } @@ -42,11 +41,12 @@ ADD_DESCR("guest", basename(__FILE__)); // Load the include file $INC = sprintf("%sinc/modules/guest/what-%s.php", PATH, $GLOBALS['what']); -if (file_exists($INC)) { +if (FILE_READABLE($INC)) { // Ok, we finally load the guest action module include($INC); } else { - $FATAL[] = GUEST_404_ACTION_1.$GLOBALS['what'].GUEST_404_ACTION_2; + ADD_FATAL(GUEST_404_ACTION_1.$GLOBALS['what'].GUEST_404_ACTION_2); } + // ?>