I don't mean to sound stupid here, but you are way over my head on this one.
The two queries I need to check permissions for are:
Code:
//Most Popular Thread by Replies
$popularreply=$DB_site->query_first("SELECT * FROM thread ORDER by replycount DESC LIMIT 1");
//Most Popular Thread by Views
$popularview=$DB_site->query_first("SELECT * FROM thread ORDER by views DESC LIMIT 1");
What code do I need to add to for these? I inserted the whole function that Firefly posted in the admin/functions.php file already, so it is there.
I really appreciate your help on this. I am totally lost when it comes to the permissions checking.