If you want to point all the Links in Nuke that point to the Edit Profile and Registration to NOW point to the Forums Edit pofile and registration, all you need to do is this. No need to look for all those links.
***********************************
Find this in modules/Your_Account/index.php
***********************************
|
Code:
|
case "edituser":
edituser();
break; |
***********************************
Replace with
***********************************
|
Code:
|
case "edituser":
Header("Refresh: 0; url=modules.php?name=Forums&file=profile&mode=editprofile");
break; |
***********************************
And Find this
***********************************
|
Code:
|
case "new_user":
new_user();
break; |
***********************************
And Replace with
***********************************
|
Code:
|
case "new_user":
Header("Refresh: 0; url=modules.php?name=Forums&file=profile&mode=register");
break; |
credit does not go to me for this little fix..I actually can't remember who posted this tid-bit of info. He posted it somewhere else in our forums.
mikem