https://www.icyphoenix.com/viewtopic.php?f=35&t=540&p=4668#p4668
-----------------------------------
Mighty Gorgon
Fri 10 Nov, 2006 01:19

Re: Questions
-----------------------------------
You are right... I forgot to add another check... :roll:

Try this:

OPEN [b]functions.php[/b]

FIND
[codeblock]			if ( $theme = setup_style($style) )[/codeblock]
REPLACE WITH
[codeblock]			if ( $theme = setup_style($style, $old_style) )[/codeblock]

FIND
[codeblock]function setup_style($style)[/codeblock]
REPLACE WITH
[codeblock]function setup_style($style, $old_style = false)[/codeblock]

FIND
[codeblock]			if ( $style != $board_config['default_style'])
			{[/codeblock]
REPLACE WITH
[codeblock]			if ( ($style != $board_config['default_style']) || ($old_style != false) )
			{
				if ($old_style != false)
				{
					$board_config['default_style'] = $old_style;
				}[/codeblock]

This should definitely solve this issue. :roll:


