Quote:
Originally Posted by daz1967
there appears to be a security problem with this, anything posted in a private section such as a staff zone is visable in the new threads section
any ideas how to stop this?
|
They would not be able to view them but I agree they should not see the titles but the fix is simple
Just search in music.php for "WHERE NOT ISNULL (thread.threadid) ORDER BY lastpost DESC LIMIT 0, 10"); //You can change the limit default is 10"
and replace with
"WHERE NOT ISNULL (thread.threadid) AND thread.forumid <>
21 ORDER BY lastpost DESC LIMIT 0, 10"); //You can change the limit default is 10"
where
21 is replaced with your forum id number or numbers you do not want to be displayed.
Hope this helps.