]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/member/action-main.php
A lot fixes to templates and missing functions added, more rewrites
[mailer.git] / inc / modules / member / action-main.php
index 72e405d7ada3bf614c7945f92ea13b8475716e05..50874082abd3a61bcd758cb81e63313ac62dcf9a 100644 (file)
@@ -46,12 +46,12 @@ if (!defined('__SECURITY')) {
 ADD_DESCR("member", __FILE__);
 
 // Load the include file
-$INC_WHAT = sprintf("%sinc/modules/member/what-%s.php", PATH, $GLOBALS['what']);
-if (FILE_READABLE($INC_WHAT)) {
+$INC = sprintf("inc/modules/member/what-%s.php", SQL_ESCAPE($GLOBALS['what']));
+if (INCLUDE_READABLE($INC)) {
        // Ok, we finally load the member action module
-       include_once($INC_WHAT);
+       LOAD_INC($INC);
 } else {
-       ADD_FATAL(MEMBER_404_ACTION_1.$GLOBALS['what'].MEMBER_404_ACTION_2);
+       addFatalMessage(__FILE__, __LINE__, sprintf(getMessage('MEMBER_404_ACTION'), $GLOBALS['what']));
 }
 
 //