]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/guest/action-admin.php
New naming convention applied to many functions, see #118 for details
[mailer.git] / inc / modules / guest / action-admin.php
index 59df1863bbc9f03b59db6684fdb345c1edfbd28a..a28716c64442b51c38ae6700241a257bf14c8d1e 100644 (file)
@@ -47,9 +47,9 @@ if (!defined('__SECURITY')) {
 
 // Only when one admin link is clicked...
 $INC = sprintf("inc/modules/guest/what-%s.php", SQL_ESCAPE($GLOBALS['what']));
-if (INCLUDE_READABLE($INC)) {
+if (isIncludeReadable($INC)) {
        // Ok, we finally load the guest action module
-       LOAD_INC($INC);
+       loadInclude($INC);
 } else {
        addFatalMessage(__FILE__, __LINE__, getMessage('GUEST_404_ACTION'), $GLOBALS['what']);
 }