Simple Machines Community Forum

SMF Support => SMF 2.0.x Support => Topic started by: Mystery? on June 16, 2009, 01:54:01 PM

Title: Undefined Variable: Boardurl
Post by: Mystery? on June 16, 2009, 01:54:01 PM
I have posted this issue in the mod topic, but I need this problem fixed ASAP.

I am getting this from FlashChat Integration

Notice: Undefined variable: boardurl in /home/mystery/public_html/forum/Themes/default/languages/Modifications.english.php on line 172

Line 172: $txt['whoall_chat'] = 'In the <a href="' . $boardurl . '?action=chat">Chatroom</a>';?>
Title: Re: Undefined Variable: Boardurl
Post by: JBlaze on June 16, 2009, 01:56:41 PM
Code (find) Select
<?php
Code (replace) Select
<?php
   
global $boardurl;
Title: Re: Undefined Variable: Boardurl
Post by: Mystery? on June 16, 2009, 02:34:44 PM
Quote from: JBlaze on June 16, 2009, 01:56:41 PM
Code (find) Select
<?php
Code (replace) Select
<?php
   
global $boardurl;


Thanks for the help!

Topic Solved...
Title: Re: Undefined Variable: Boardurl
Post by: JBlaze on June 16, 2009, 02:41:02 PM
No problem, glad to help :)