]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-list_email_max_rec.php
Fixed also usage of previously renamed fields as they must be the same
[mailer.git] / inc / modules / admin / what-list_email_max_rec.php
index beba87e5e2f4a82bf224f2bd4c703cabfe287fb5..0dc271e48c99f097bd41814df0428af8b3ac1174 100644 (file)
@@ -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