X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-overview.php;h=4a464836a0c6431fa4d50aa00841b4f9e2e4445b;hp=7f947a212c6f27e1c60ba0087aebddce634baca5;hb=039203d5428c9c6a3bed61fb3a9a16958c6fd44c;hpb=f97a999e0737c0007ae9c3c26dfef49f75a175ac diff --git a/inc/modules/admin/what-overview.php b/inc/modules/admin/what-overview.php index 7f947a212c..4a464836a0 100644 --- a/inc/modules/admin/what-overview.php +++ b/inc/modules/admin/what-overview.php @@ -1,7 +1,7 @@ 0)) { @@ -79,21 +84,21 @@ if (!ifAdminMenuHasEntries($GLOBALS['action'])) { ); // Load row template - $OUT .= LOAD_TEMPLATE("admin_menu_hints_row", true, $content); + $OUT .= loadTemplate('admin_menu_hints_row', true, $content); } // END - foreach // Load base template - LOAD_TEMPLATE("admin_menu_hints", false, $OUT); + loadTemplate('admin_menu_hints', false, $OUT); } -} elseif (!$taskExt) { - if (EXT_IS_ACTIVE('task')) { +} elseif ($taskExt === false) { + if (isExtensionActive('task')) { // Output warning message - LOAD_TEMPLATE('admin_settings_saved', false, sprintf(getMessage('EXTENSION_WARNING_EXT_INACTIVE'), 'task')); + loadTemplate('admin_settings_saved', false, getMaskedMessage('EXTENSION_WARNING_EXT_INACTIVE', 'task')); } // List selected tasks on overview when task management is not active - OUTPUT_SELECTED_TASKS(REQUEST_POST_ARRAY(), $result_tasks); + outputSeletectedTasks(postRequestArray(), $result_tasks); } -// +// [EOF] ?>