|
Originally Posted by IACOJ
|
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&op=userinfo&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
|
No. Because the Forum uses UID to identify users and point to their Profiles. The Nuke side uses uname or uname. That change would require a code change to query the Database to grab the uid and then use it instead of uname.
A little more involved hacking there.
mikem