New naming convention applied to many functions, see #118 for details
[mailer.git] / inc / modules / guest / action-main.php
index bb1a284f36b5cbe444470ebd2c8c72a20aeda4af..a555c07e79914463f22311a1839ec9a716f178ca 100644 (file)
@@ -50,9 +50,9 @@ ADD_DESCR('guest', __FILE__);
 
 // Load the include file
 $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']);
 }