Quote:
Originally posted by LeeCHeSSS
open your vbHome index.php. Find:
Code:
$iuserperms = 'AND thread.postuserid=' . implode(' OR thread.postuserid=', explode(',', $activepollusers));
and REPLACE WITH:
Code:
$pollfora = 'AND forumid=' . implode(' OR forumid=', explode(',', $pollfora));
|
I cannot find the first line in the code. I find 2 lines with iuserperms in it. The closest line I find is the following:
Code:
$iuserperms = 'AND thread.postuserid IN (' . $activepollusers . ')';
Should I replace this line?
Thanks for doing this. This looks like exactly what I need.