Quote:
Originally Posted by CBrown
Really? That easy? Wow.. I have been doing this the hard way.
Thanks!
|
Yes, it's that easy.
Quote:
Originally Posted by Lynne
Dismounted, what is the difference between doing it that way, and doing it this way:
Code:
<if condition="$show['member']">HELLO WORLD</if>
|
None. Lines 499-508 in global.php (3.7.3 PL1).
PHP Code:
if (!$vbulletin->userinfo['userid'] OR $loggedout)
{
$show['guest'] = true;
$show['member'] = false;
}
else
{
$show['guest'] = false;
$show['member'] = true;
}