Fixed for loading themes, no longer needed parameters removed
[mailer.git] / inc / modules / member / action-themes.php
index b4cdecf9654432536bb1da1a6003f5b858873cf8..86ad7ff2c1b53492f22cf5276e87e34dc839fe8b 100644 (file)
@@ -58,10 +58,7 @@ if (IS_ADMIN()) {
 
 if ($num_themes > 1) {
        // If more than 1 is installed output selection box
-       $act = ''; $wht = '';
-       if (isActionSet()) $act = getAction();
-       if (isWhatSet())   $wht = getWhat();
-       $OUT = generateThemeSelectionBox('login', $act, $wht, $result_themes);
+       $OUT = generateThemeSelectionBox();
 } elseif (($num_themes == 1) || ((!IS_ADMIN()) && ($num_themes == 0))) {
        // If there's only one just output it's name
        define('__THEME_NAME', getCurrentThemeName());
@@ -71,9 +68,6 @@ if ($num_themes > 1) {
        $OUT = LOAD_TEMPLATE('admin_settings_saved', true, "<div class=\"admin_note\">{--ADMIN_NO_THEME_INSTALLED_WARNING--}</div>");
 }
 
-// Free memory
-SQL_FREERESULT($result_themes);
-
 // Load final box template
 LOAD_TEMPLATE('theme_select_box', false, $OUT);