Quote:
Originally Posted by Dave
The problem is here:
PHP Code:
if(!isSuperMod($vbulletin)){
$m_forums = "AND forumid IN ( ". implode(',', modForums( $vbulletin)) ." )";
}
the modForums function returns no records, therefore the IN clause will fail. Adding a count check after the isSuperMod check should fix this problem.
|
Thanks, Dave, but a question: How do I add a count check??