Quote:
Originally posted by jimmyjoe
First of all I was wondering how i can add in the right pane the last posts for some selected forums...
|
Change (in 2.0.1):
PHP Code:
if ($action == "getnew") {
// new posts
$threadsquery = $DB_site->query("select threadid,forumid,title,postusername,lastposter,replycount,iconid from thread WHERE visible=1 AND thread.lastpost>=".$bbuserinfo[lastvisit]." AND thread.open<>10 ".$threadsql." order by lastpost desc limit $numthreads");
}
To:
PHP Code:
if ($action == "getnew") {
// new posts
$threadsquery = $DB_site->query("select threadid,forumid,title,postusername,lastposter,replycount,iconid from thread WHERE visible=1 AND thread.lastpost>=".$bbuserinfo[lastvisit]." AND thread.open<>10 AND forumid=X ".$threadsql." order by lastpost desc limit $numthreads");
}
Replace X with the forumid. To add more forums add AND forumid=X after the last one.
Quote:
and secondly, I a user logs in and has a PM waiting the normal popup window will appear and if he tries to follow the popup box to read the message, and error appears. It is a cgi error. i think it is because the url it is linking to is wrong... here is my forum..
|
Edit the head_newpm template and put $bburl before the (I think 2) instances of private.php that way they will be sent to the right URL