notice: Undefined variable: form_values in /var/www/www.astrocalc.com/htdocs/sites/all/modules/switchtheme/switchtheme.module on line 151.
a review with coder module shows:
switchtheme.module
*
severity: critical Line 151: use $form_state['values'] instead, which is where the values are stored after a submit
variable_set('theme_default', $form_values['custom_theme']);
| Comment | File | Size | Author |
|---|---|---|---|
| #3 | switchtheme.patch | 758 bytes | sun |
Comments
Comment #1
vikingew commentedand the fix:
changing
variable_set('theme_default', $form_values['custom_theme']);to
variable_set('theme_default', $form_state['values']['custom_theme']);fixes it ;-)
Comment #2
vikingew commentedComment #3
sunIMHO, SwitchTheme should never ever allow users to switch the default theme of a site. This happens exactly in this line.
Instead of fixing this bug, I'd propose to remove the line completely.
The same change is already incorporated in the the patch in #185254: Themes don't switch for anonymous users.
Comment #4
sunMarking as duplicate of #247348: Switchtheme switches the default theme not the users'