Quote:
Originally Posted by Lynne
No, you do not need to create your own vB page to use it. Right now, your code shows that your tab should be selected when you are on a page where THIS_SCRIPT is defined as podcast. Perhaps you meant to use something like this instead?
PHP Code:
if ($_REQUEST['do'] == 'podcast')
|
So I should replace
Code:
if (THIS_SCRIPT == 'podcast')
with
Code:
if ($_REQUEST['do'] == 'podcast'
I tried this but get a PARSE error.
Maybe that's where I'm getting confused. How do you define a page as something like 'podcast'?