To update from version 1.0 to 1.1, do this:
Open postings.php, look for:
--------------------------------------------------------------------------------
global $hideprivateforums,$bbuserinfo,$session, $useforumjump;
--------------------------------------------------------------------------------
Replace with:
--------------------------------------------------------------------------------
global $hideprivateforums,$bbuserinfo,$session, $useforumjump,$forumjumpdepth;
// Forumjump Depth Hack
$oldforumjumpdepth = $forumjumpdepth;
$forumjumpdepth = 1000;
--------------------------------------------------------------------------------
Still in postings.php, look for:
--------------------------------------------------------------------------------
$useforumjump=$olduseforumjump;
--------------------------------------------------------------------------------
After it, add:
--------------------------------------------------------------------------------
$forumjumpdepth=$oldforumjumpdepth; // Forumjump Depth Hack
--------------------------------------------------------------------------------
The attached file in the first post has already been updated.
|