X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-theme_import.php;h=baf910dfef22880922b3e5d399c33cf61b1286b3;hb=cf3765c38cf0a76f396aca291f71858936e92956;hp=3a1c48d9123d7344775ed8dc619d269f0f97f719;hpb=19b197c32c96ce8eea26561fb7b40e87c57716ae;p=mailer.git diff --git a/inc/modules/admin/what-theme_import.php b/inc/modules/admin/what-theme_import.php index 3a1c48d912..baf910dfef 100644 --- a/inc/modules/admin/what-theme_import.php +++ b/inc/modules/admin/what-theme_import.php @@ -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 = '
' . getMaskedMessage('ADMIN_THEME_ALREADY_INSTALLED', $unix) . '
'; @@ -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,14 +150,11 @@ 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)) { // No themes found??? - $OUT .= loadTemplate('admin_theme_import_none', true, loadTemplate('admin_settings_saved', true, getMessage('ADMIN_NO_THEMES_FOUND'))); + $OUT .= loadTemplate('admin_theme_import_none', true, loadTemplate('admin_settings_saved', true, '{--ADMIN_NO_THEMES_FOUND--}')); } // END - if // Load template