View Single Post
  #6 (permalink)  
Old 01-10-2003, 09:49 PM
IACOJ IACOJ is offline
Moderator
 
Join Date: Nov 2002
Posts: 737
As I was going through looking for all the files that need to point to the forums. I noticed that in certain places it also looks to "Your Account" for user info, like theme.php. So what I'm wondering is whether this

Code:
if($informant != "") {
	    $content = "<a href=\"modules.php?name=Your_Account&amp;op=userinfo&amp;uname=$informant\">$informant</a> ";
	} else {
	    $content = "$anonymous ";
Should be changed to something like this?

Code:
if($informant != "") { 
       $content = "<a href=\"modules.php?name=Forums&file=profile&uname=$informant\">$informant</a> "; 
   } else { 
       $content = "$anonymous ";
Thanks for your help
Reply With Quote