http://www.icyphoenix.com/viewtopic.php?f=29&t=2303&p=16644#p16644
-----------------------------------
Mighty Gorgon
Wed 20 Jun, 2007 01:14

Re: 001-014 Admin Board Header Issues
-----------------------------------
[list][*]You're right about the code block order in the [b]adm/admin_board_header_banners.php[/b] file (and not only that one... but it is not a major issue).
[*]The problem with slashes is not to be solved how you suggest... because it is wrong.
It has to be solved in this way:
OPEN [b]includes/page_header.php[/b]
FIND
[codeblock]	'HEADER_BANNER_CODE' => $board_config['header_banner_text'],
	'VIEWTOPIC_BANNER_CODE' => $board_config['viewtopic_banner_text'],
[/codeblock]
REPLACE WITH
[codeblock]	'HEADER_BANNER_CODE' => stripslashes($board_config['header_banner_text']),
	'VIEWTOPIC_BANNER_CODE' => stripslashes($board_config['viewtopic_banner_text']),
[/codeblock]
[*]No problem with the $_POST variable, it is working fine in PHP4 as well.[/list]


