I would like to make a little change to the online location, but I I just don't know how
Here's how my original (Flashchat Online (2)) looks like:
PHP Code:
if ($userinfo['activity'] == 'flashchat')
{
$handled = true;
$userinfo['action'] = $vbphrase['in_flashchat'];
$userinfo['where'] = '<a href="'.$vbulletin->options['bburl'].$vbphrase['flashchat_path'].'">Click here to join the chat!</a>';
}
And this is what I would like to change so that the chat opens in a new window:
PHP Code:
<a href="http://www.mydomain.com/board/chat/flashchat.php"
onclick="window.open(this.href,'NAME','top=0,left=0,width=650,height=500'); return false;" title="NAME">Click here to join the chat!</</a>
How to change the code to make it work in php? :disappointed:
Thank you very much in advance