]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-list_holiday.php
More rewrites to make use of (cached) wrapper functions
[mailer.git] / inc / modules / admin / what-list_holiday.php
index d23b431eb17f23fd06ae34973a31f6d0db8e34c4..f2d29b272385a065fa3c245374427a6bb7e8b65d 100644 (file)
@@ -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]