View Single Post
Old
  (#2 (permalink))
mikem
Senior Member
 
Status: Offline
Posts: 2,905
Join Date: Sep 2002
12-17-2002, 09:52 AM

Add this

Code:
    if (is_user($user)) {
	include("modules/Your_Account/navbar.php");
	OpenTable();
	nav();
	CloseTable();
	echo "
";
    }
 else {
    $phpbb_root_path = 'modules/Forums/';
    $nuke_file_path = 'modules.php?name=Forums&file=';
}
right below this
Code:
    require("modules/Forums/nukebb.php");
in your modules/Forums/profile.php file
That will force the Navbar to appear when you edit your profile via the Forum.

mikem
   
Reply With Quote