X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-list_holiday.php;h=f2d29b272385a065fa3c245374427a6bb7e8b65d;hb=98b92ea5ba992a63304091fa1b57f477befffc22;hp=d23b431eb17f23fd06ae34973a31f6d0db8e34c4;hpb=04b69ac9f33369cbf654396c4a42cb1fff710ff4;p=mailer.git diff --git a/inc/modules/admin/what-list_holiday.php b/inc/modules/admin/what-list_holiday.php index d23b431eb1..f2d29b2723 100644 --- a/inc/modules/admin/what-list_holiday.php +++ b/inc/modules/admin/what-list_holiday.php @@ -57,16 +57,12 @@ ON ORDER BY h.userid ASC", __FILE__, __LINE__); -if (SQL_NUMROWS($result) > 0) { +if (!SQL_HASZERONUMS($result)) { // List all holiday requests - $OUT = ''; $SW = 2; + $OUT = ''; while ($content = SQL_FETCHARRAY($result)) { - // Add three dashes to comment when it is empty - if (empty($content['comments'])) $content['comments'] = '---'; - // Prepare data for the row template $content = array( - 'sw' => $SW, 'id' => $content['id'], 'userid' => $content['userid'], 'start' => generateDateTime($content['holiday_start'], 3), @@ -78,7 +74,6 @@ if (SQL_NUMROWS($result) > 0) { // Load row template and switch color $OUT .= loadTemplate('admin_list_holiday_row', true, $content); - $SW = 3 - $SW; } // END - while // Free memory @@ -88,7 +83,7 @@ if (SQL_NUMROWS($result) > 0) { loadTemplate('admin_list_holiday', false, $OUT); } else { // No holiday requests found - loadTemplate('admin_settings_saved', false, '{--HOLIDAY_ADMIN_NOTHING_FOUND--}'); + loadTemplate('admin_settings_saved', false, '{--ADMIN_HOLIDAY_NOTHING_FOUND--}'); } // [EOF]