X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-list_email_max_rec.php;h=0dc271e48c99f097bd41814df0428af8b3ac1174;hb=b02de7ccf21c231499555985632da8f19a2fa614;hp=beba87e5e2f4a82bf224f2bd4c703cabfe287fb5;hpb=2df9f7a53f8b1dd5164f87824a324ccb3b6634cb;p=mailer.git diff --git a/inc/modules/admin/what-list_email_max_rec.php b/inc/modules/admin/what-list_email_max_rec.php index beba87e5e2..0dc271e48c 100644 --- a/inc/modules/admin/what-list_email_max_rec.php +++ b/inc/modules/admin/what-list_email_max_rec.php @@ -108,12 +108,12 @@ if (isPostRequestElementSet('add_max')) { SQL_FREERESULT($result); // Load row template and switch color - $OUT .= loadTemplate('admin_delete_email_max_rec_row', true, $content); + $OUT .= loadTemplate('admin_delete_email_max_rec_row', TRUE, $content); } // END - foreach $content['rows'] = $OUT; // Load main template - loadTemplate('admin_delete_email_max_rec', false, $content); + loadTemplate('admin_delete_email_max_rec', FALSE, $content); } elseif ((isFormSent('edit')) && (ifPostContainsSelections())) { // Edit entries $OUT = ''; @@ -125,12 +125,12 @@ if (isPostRequestElementSet('add_max')) { SQL_FREERESULT($result); // Load row template and switch color - $OUT .= loadTemplate('admin_edit_email_max_rec_row', true, $content); + $OUT .= loadTemplate('admin_edit_email_max_rec_row', TRUE, $content); } // END - foreach $content['rows'] = $OUT; // Load main template - loadTemplate('admin_edit_email_max_rec', false, $content); + loadTemplate('admin_edit_email_max_rec', FALSE, $content); } else { $result = SQL_QUERY("SELECT `id`, `value`, `comment` FROM `{?_MYSQL_PREFIX?}_max_receive` ORDER BY `value` ASC", __FILE__, __LINE__); @@ -139,7 +139,7 @@ if (isPostRequestElementSet('add_max')) { $OUT = ''; while ($content = SQL_FETCHARRAY($result)) { // Load row template and switch color - $OUT .= loadTemplate('admin_list_email_max_rec_row', true, $content); + $OUT .= loadTemplate('admin_list_email_max_rec_row', TRUE, $content); } // END - while // Free memory @@ -147,7 +147,7 @@ if (isPostRequestElementSet('add_max')) { $content['rows'] = $OUT; // Load main template - loadTemplate('admin_list_email_max_rec', false, $content); + loadTemplate('admin_list_email_max_rec', FALSE, $content); } // END - if // Display form