New naming convention applied to many functions, see #118 for details
[mailer.git] / inc / modules / admin / action-theme.php
index 262af31025801977a03e915a39c25fbd67317c7f..48e2d96df841e4fe87363eec8112ef9090974002 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 (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']);
 }