]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-config_register.php
A lot code rewritten:
[mailer.git] / inc / modules / admin / what-config_register.php
index 0744101ffcd8a986c932942b5320640480875f2f..1c6792fde03c6b69c2818f99357c086b30fba970 100644 (file)
@@ -66,20 +66,16 @@ if (isFormSent()) {
 
 // List all register values
 $result = SQL_QUERY("SELECT `id`, `field_name`, `field_required` FROM `{?_MYSQL_PREFIX?}_must_register` ORDER BY `id` ASC", __FILE__, __LINE__);
-$OUT = ''; $SW = 2;
+$OUT = '';
 while ($content = SQL_FETCHARRAY($result)) {
        // Get language string
        $content['field_name'] =  getMessage(strtoupper($content['field_name']));
 
        // Add more data
-       $content['sw']        = $SW;
        $content['selection'] = addSelectionBox('yn', $content['field_required'], 'sel[' . $content['id'] . ']');
 
        // @TODO Move this HTML code into a template
        $OUT .= loadTemplate('admin_config_register_row', true, $content);
-
-       // Switch color
-       $SW = 3 - $SW;
 } // END - while
 
 // Free memory