New naming convention applied to many functions, see #118 for details
[mailer.git] / inc / modules / admin / action-task.php
index 1b9c69a78456a62895d62909559fece15e7b0f38..721e5edd9ab2c52b8b91d09acb6f7d0444aa829a 100644 (file)
@@ -50,9 +50,9 @@ ADD_DESCR('admin', __FILE__);
 
 // Load the include file
 $INC = sprintf("inc/modules/admin/what-%s.php", SQL_ESCAPE($GLOBALS['what']));
-if (INCLUDE_READABLE($INC)) {
+if (isIncludeReadable($INC)) {
        // Ok, we finally load the admin action module
-       LOAD_INC($INC);
+       loadInclude($INC);
 } else {
        addFatalMessage(__FILE__, __LINE__, getMessage('ADMIN_ACTION_404'), $GLOBALS['what']);
 }