Seems to work fine for me on v3.5.3
If you're upgrading from the older v3.0.x version of it you might want to use the following queries to copy the old data over after you've installed the hack:
Code:
UPDATE forum SET fh_banner=fhbanner;
UPDATE forum SET fh_url=fhbannerlink;
UPDATE forum SET fh_text=fhmessage;
After making this change you'll need to flush the forum cache. From the forum manager choose to edit any forum (it doesn't matter) and save it without making any changes.
If you want to remove the columns created by the older v3.0.x hack you can use the following SQL
Code:
ALTER TABLE forum DROP fhbanner;
ALTER TABLE forum DROP fhbannerlink;
ALTER TABLE forum DROP fhmessage;