
10-12-2005, 04:34 AM
|
 |
|
|
Join Date: Nov 2004
Location: Sweden
Posts: 159
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by vdawg
Hi im using VB 3.5 gold and this is not working. It continues to tell me That i am already signed up for the league if when i just resigned. I have noticed this posted a lot, has it been fixed? thanks in advance.
|
Here this helped for me.
Quote:
Originally Posted by micheal332001
Ok try this
In the forums/league.php file find
PHP Code:
$userid = $bbuserinfo['userid'];
$usergroupid = $bbuserinfo['usergroupid'];
$username = $bbuserinfo['username'];
Change to
PHP Code:
$userid = $vbulletin->userinfo['userid'];
$usergroupid = $vbulletin->userinfo['usergroupid'];
$username = $vbulletin->userinfo['username'];
|
|