]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-config_other.php
Mailer project rwritten:
[mailer.git] / inc / modules / admin / what-config_other.php
index 78688741e514d2f5ddacad82d22127c889e4e4e8..7345a4eb6fa846d07abb65c242b0b37458c4c61d 100644 (file)
@@ -83,17 +83,15 @@ if (isFormSent('save_config')) {
                $content[$entry] = '';
        } // END - foreach
 
-       // Set selections
-       foreach (array('css_php','mailid_error_redirect') as $entry) {
-               $content[$entry . '_' . strtolower(getConfig($entry))] = ' checked="checked"';
-       } // END - foreach
-
        for ($i = '0'; $i <= 5; $i++) {
                $content['comma_def_' . $i] = '';
        } // END - for
 
+       // Set selections
+       $content = merge_array($content, getCheckedConfig(array('css_php','mailid_error_redirect')));
+
        // Set selection
-       $content['comma_def_' . getConfig('max_comma')] = ' selected="selected"';
+       $content = merge_array($content, getSelectedConfig(array('comma_def_' . getConfig('max_comma'))));
 
        // Load template
        loadTemplate('admin_config_other', FALSE, $content);