
01-05-2009, 12:07 PM
|
|
|
Join Date: Jun 2006
Location: Portugal
Posts: 308
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by VBDev
Ok to fix this, search in the mgc_cb_evo.php file for :
PHP Code:
if ($vbulletin->GPC['what'] == 'userchats')
Some lines below search for :
PHP Code:
$where_clause = "coidentifier IN (" . implode(',',$identifier_array) . ") AND fromuid='" . $vbulletin->userinfo['userid'] . "'";
Replace it by :
PHP Code:
$where_clause = "coidentifier IN (" . implode(',',$identifier_array) . ") AND fromuid='" . $user['userid'] . "'";
|
Confirmed, it works. Thanks again VBDev
|