I'm using SSI (I use ssi_welcome)on my site already, but I'm having problems with this:
<?php
require("forums/ssi.php");
if ($context['user']['is_guest'])
{
echo
'<h5>Access Denied</h5>
We are sorry guest, it seems you dont have premission to view these downloads.';
}
else
{
echo
'<h5>Welcome ', $context['user']['name'], '!</h5>
Here are your downloads:';
}
?>
This code only give me "Welcome ! Here are your downloads:", it doesn't matter if i'm loged in or not I still get that. Does this not work with 1.0 RC1?