PDA

View Full Version : URGENT: Help with forumhome hack please


Spidah
08-28-2002, 11:05 PM
I need to modify the forum homepage to have the forumjump box show just above the forum list.

This is easy enough to do, BUT, when if I call the makeforumjump function in index.php it causes the main forum list to not be displayed for some reason.

My php code syntax is correct. Any ideas as to what I am doing wrong?

Thanks



www.laughland.biz
'the web site for web sites

Scott MacVicar
08-29-2002, 01:04 AM
Your code obviously isnt right then :)

The makeforumbit uses each which advanced the array pointer on one each time, you will need to add this after makeforumjump();

reset($iforumcache["$forumid"]);

to reset the internal array pointer.

Spidah
08-29-2002, 02:08 AM
That solved the problem.
Although you do need to be careful where you make the calls.

Thanks for your help

Scott MacVicar
08-29-2002, 09:00 AM
correct, makeforumbit unsets the $iforumcache so if you add it after that then the array is empty and you can't use makeforumjump :)