There's got to be someone out there who has figured something out... anyone have any ideas at all, or any code modifications they could share?
--------------- Added [DATE]1234814003[/DATE] at [TIME]1234814003[/TIME] ---------------
I found it!!! From this post:
http://www.vbulletin.com/forum/proje...?issueid=27226
Quote:
Originally Posted by Pogo
Guess it happens with specific permissions and this code in line 1523 of functions_socialgroup.php
Code:
while ($touser = $vbulletin->db->fetch_array($useremails))
{
// check user can view discussion
$permissions = cache_permissions($user, false);
which should be
Code:
while ($touser = $vbulletin->db->fetch_array($useremails))
{
// check user can view discussion
$permissions = cache_permissions($touser, false);
|