X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-list_coupon.php;h=af6b30d1ac6e48034d5befc6a1a653356e42ee98;hb=928e9aedd8248545a9fef27c75a5ba016ad1d61b;hp=ff5474fdd8d28ab2dcf790481762e900c70f8560;hpb=63f159414369b5ea19a8ca75d8cd8033c45d8341;p=mailer.git diff --git a/inc/modules/admin/what-list_coupon.php b/inc/modules/admin/what-list_coupon.php index ff5474fdd8..af6b30d1ac 100644 --- a/inc/modules/admin/what-list_coupon.php +++ b/inc/modules/admin/what-list_coupon.php @@ -69,7 +69,7 @@ ORDER BY bigintval(getRequestElement('coupon_id')) ), __FILE__, __LINE__); - // Do we have entries? + // Are there entries? if (!SQL_HASZERONUMS($result)) { // Init variable $OUT = ''; @@ -82,11 +82,11 @@ ORDER BY $content['coupon_expired'] = generateDateTime($content['coupon_expired'], '2'); // Add the row template - $OUT .= loadTemplate('admin_list_coupon_usr_row', true, $content); + $OUT .= loadTemplate('admin_list_coupon_usr_row', TRUE, $content); } // END - while // Load main template - loadTemplate('admin_list_coupon_usr', false, $OUT); + loadTemplate('admin_list_coupon_usr', FALSE, $OUT); } else { // No cashed coupons found displayMessage('{--ADMIN_LIST_COUPON_404--}'); @@ -109,7 +109,7 @@ FROM ORDER BY d.`id` ASC', __FILE__, __LINE__); - // Do we have entries? + // Are there entries? if (!SQL_HASZERONUMS($result)) { // Init variable $OUT = ''; @@ -121,11 +121,11 @@ ORDER BY $content['coupon_expired'] = generateDateTime($content['coupon_expired'], '2'); // Add the row template - $OUT .= loadTemplate('admin_list_coupon_row', true, $content); + $OUT .= loadTemplate('admin_list_coupon_row', TRUE, $content); } // END - while // Load main template - loadTemplate('admin_list_coupon', false, $OUT); + loadTemplate('admin_list_coupon', FALSE, $OUT); } else { // No cashed coupons found displayMessage('{--ADMIN_LIST_COUPON_404--}');