New naming convention applied to many functions, see #118 for details
[mailer.git] / inc / modules / admin / action-
index 19f675d53eea9733e0d3ce67a3991995bd0407e7..1200c49dc93c997ef609a4239ca3b931caf981f3 100644 (file)
@@ -47,9 +47,9 @@ ADD_DESCR('admin', __FILE__);
 
 // Load the include file
 $INC = sprintf("inc/modules/admin/what-%s.php", SQL_ESCAPE($GLOBALS['what']));
-if (FILE_READABLE($INC)) { 
+if (isIncludeReadable($INC)) { 
        // Ok, we finally load the admin action module
-       LOAD_INC($INC);
+       loadInclude($INC);
 } else {
        addFatalMessage(__FILE__, __LINE__, ADMIN_404_ACTION_1.$GLOBALS['what'].ADMIN_404_ACTION_2);
 }