I’m using MSM to setup a site, and a separate employee only site that requires a login. However, even when I’m logged out, my conditional isn’t working. It’s still showing me logged in and I’m able to access the content. Here’s what my template looks like:
{if logged_in}
{embed="includes/header"}
{exp:weblog:entries}
{content}
{/exp:weblog:entries}
{embed="includes/footer"}
{/if}
{if logged_out}
{redirect="login"}
{/if}