Quote:
Originally Posted by SirAdrian
Better yet, just do this:
PHP Code:
// true
if ($var)
{
}
// false
if (!$var)
{
}
Make sure you quote 'option' otherwise if it is a defined constant, you will run into some problems. I also suggest using 'yesno' for the eval code for the option.
|
So I could do this:
PHP Code:
if (THIS_SCRIPT == "index")
{
global $globaltemplates;
$option = $vbulletin->$option['option'];
if ($option)
{
$globaltemplates = array_merge($globaltemplates, array('template'));
}
if (!$option)
{
$globaltemplates = array_merge($globaltemplates, array('second_template'));
}
}