in the new "positive contact" layout:
function logged_in(string login_text) : string {
var Page p = get_page();
if (viewer_logged_in()) {
if (viewer_is_owner()) {
return """
$p.manage_account.caption""";
}
}
return $login_text;
}umm. if we know that the viewer is the owner, we know that the viewer is logged in. duh.