
03-16-2006, 05:46 AM
|
|
|
Join Date: Dec 2003
Location: England
Posts: 362
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by Howdy
I have it working on 3.53. Just had to change the admincp slightly from this in the directions:
Find:
$forum['description'] = convert_to_valid_html($forum['description']);
below add:
$forum['fhbanner'] = convert_to_valid_html($forum['fhbanner']);
$forum['fhbannerlink'] = convert_to_valid_html($forum['fhbannerlink']);
$forum['fhmessage'] = convert_to_valid_html($forum['fhmessage']);
to this -->
below add (instead of above):
$forum['fhbanner'] = str_replace('&', '&', $forum['fhbanner']);
$forum['fhbannerlink'] = str_replace('&', '&', $forum['fhbannerlink']);
$forum['fhmessage'] = str_replace('&', '&', $forum['fhmessage']);
|
Or you could have just installed the 3.5.x plugin found here
|