Hiho =)
If your forum is not located in the root directory of your domain all links to forums in the "Moderate Posts" section will not work.
One more problem (but maybe a design issue) is that these links are opened inside the admincp/modcp frameset (same with the user profile links).
I fixed it like this:
Open mod/moderate.php and find
Replace it with
Find
and replace it with
To make the user profile links also open in a new window find this two times:
and replace it with:
If your forum is not located in the root directory of your domain all links to forums in the "Moderate Posts" section will not work.
One more problem (but maybe a design issue) is that these links are opened inside the admincp/modcp frameset (same with the user profile links).
I fixed it like this:
Open mod/moderate.php and find
Code:
makelabelcode("<b>Located in:</b>","<a href=\\"/forumdisplay.php?s=$session[sessionhash]&forumid=$thread[forumid]\\">$thread[forumtitle]</a>");
Code:
makelabelcode("<b>Located in:</b>","<a href=\\"../forumdisplay.php?s=$session[sessionhash]&forumid=$thread[forumid]\\" target=\\"_blank\\">$thread[forumtitle]</a>");
Code:
makelabelcode("<b>Located in:</b>","<a href=\\"/forumdisplay.php?s=$session[sessionhash]&forumid=$post[forumid]\\">$post[forumtitle]</a>");
Code:
makelabelcode("<b>Located in:</b>","<a href=\\"../forumdisplay.php?s=$session[sessionhash]&forumid=$post[forumid]\\" target=\\"_blank\\">$post[forumtitle]</a>");
Code:
makelabelcode("<b>Posted by:</b>","<a href=\\"user.php?s=$session[sessionhash]&action=viewuser&userid=$user[userid]\\">$user[username]</a>");
Code:
makelabelcode("<b>Posted by:</b>","<a href=\\"user.php?s=$session[sessionhash]&action=viewuser&userid=$user[userid]\\" target=\\"_blank\\">$user[username]</a>");
Comment