X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-list_holiday.php;h=f827ab7842e12f431ad39497ed5f3b9f890838ea;hb=7cb246c51e8634735aaf24e546bcbc46c5ce3833;hp=0dc684b1498ee2a040bf33bddbefc142a7e6ae15;hpb=81bfbcd72e424060ea1223b49ad92fcfa150f361;p=mailer.git diff --git a/inc/modules/admin/what-list_holiday.php b/inc/modules/admin/what-list_holiday.php index 0dc684b149..f827ab7842 100644 --- a/inc/modules/admin/what-list_holiday.php +++ b/inc/modules/admin/what-list_holiday.php @@ -1,7 +1,7 @@ 0) { $content = array( 'sw' => $SW, 'id' => $content['id'], - 'uid' => generateUserProfileLink($content['userid']), - 'start' => generateDateTime($content['holiday_start'], '3'), - 'end' => generateDateTime($content['holiday_end'], '3'), + 'userid' => generateUserProfileLink($content['userid']), + 'start' => generateDateTime($content['holiday_start'], 3), + 'end' => generateDateTime($content['holiday_end'], 3), 'comments' => wordwrap($content['comments'], 15), 'status' => translateUserStatus($content['status']), - 'last' => generateDateTime($content['last_online'], '3'), + 'last_online' => generateDateTime($content['last_online'], 3), ); // Load row template and switch color - $OUT .= LOAD_TEMPLATE("admin_list_holiday_row", true, $content); + $OUT .= loadTemplate('admin_list_holiday_row', true, $content); $SW = 3 - $SW; } // Free memory SQL_FREERESULT($result); - // @TODO Rewrite this constant - define('__HOLIDAY_ROWS', $OUT); - // Load main template - LOAD_TEMPLATE("admin_list_holiday"); + loadTemplate('admin_list_holiday', false, $OUT); } else { // No holiday requests found - LOAD_TEMPLATE('admin_settings_saved', false, getMessage('HOLIDAY_ADMIN_NOTHING_FOUND')); + loadTemplate('admin_settings_saved', false, getMessage('HOLIDAY_ADMIN_NOTHING_FOUND')); } -// +// [EOF] ?>