]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-theme_import.php
A lot code rewritten:
[mailer.git] / inc / modules / admin / what-theme_import.php
index 41493b2f66a219a813af45979395d28ac923aeec..baf910dfef22880922b3e5d399c33cf61b1286b3 100644 (file)
@@ -126,7 +126,7 @@ foreach ($includes as $inc) {
 array_pk_sort($THEMES, array('theme_name'));
 
 // Generate output lines for the template
-$OUT = ''; $SW = 2;
+$OUT = '';
 foreach ($THEMES['theme_unix'] as $key => $unix) {
        // Already installed is default
        $formContent = '<div class="admin_note">' . getMaskedMessage('ADMIN_THEME_ALREADY_INSTALLED', $unix) . '</div>';
@@ -139,7 +139,6 @@ foreach ($THEMES['theme_unix'] as $key => $unix) {
 
        // Prepare content
        $content = array(
-               'sw'            => $SW,
                'unix'          => $unix,
                'theme_name'    => $THEMES['theme_name'][$key],
                'theme_email'   => $THEMES['theme_email'][$key],
@@ -151,9 +150,6 @@ foreach ($THEMES['theme_unix'] as $key => $unix) {
 
        // Add row template
        $OUT .= loadTemplate('admin_theme_import_row', true, $content);
-
-       // Switch color
-       $SW = 3 - $SW;
 } // END - foreach
 
 if (empty($OUT)) {