Quote:
Originally Posted by dt-pain
I am having a problem. Everything works fine but when I go to link misc.php?do=flashchat I get this error flashchat.php&room=1 does not exist.
|
I had this error too. Edit the plugin named
FlashChat Integration (1)
and change this line:
Code:
$room = '&room='.intval($vbulletin->options['fcroom']);
to this:
Code:
$room = '?room='.intval($vbulletin->options['fcroom']);
In short, you are just removing
& and replacing it for a
?