No, that isn't correct because of two issues. First, THIS_SCRIPT is defined at the top of your php page. For instance, this is the line at the top of index.php:
Code:
define('THIS_SCRIPT', 'index');
Thus, this is the correct condition:
Code:
<if condition="THIS_SCRIPT == 'index'">Home</if>
Find the name of the home script at the top of the home.php page.
Second, you want the link to look the same as this line:
Code:
<td class="vbmenu_control"><a href="index.php$session[sessionurl_q]">Forum</a></td>
That is the code (with "whatever-you-call-home" replaced with the correct name from the top of home.php) you would use in place of "Forum":
Code:
<if condition="THIS_SCRIPT == 'whatever-you-call-home'"><td class="vbmenu_control"><a href="index.php$session[sessionurl_q]">Forum</a></td></if>