redirect ostatussub if not logged in

This commit is contained in:
Evan Prodromou 2010-02-21 11:24:04 -05:00
parent df7c6b37c8
commit 727773cdfa
1 changed files with 13 additions and 3 deletions

View File

@ -58,7 +58,6 @@ class OStatusSubAction extends Action
$this->showPage();
}
/**
* Content area of the page
*
@ -116,7 +115,18 @@ class OStatusSubAction extends Action
function prepare($args)
{
parent::prepare($args);
if (!common_logged_in()) {
// XXX: selfURL() didn't work. :<
common_set_returnto($_SERVER['REQUEST_URI']);
if (Event::handle('RedirectToLogin', array($this, null))) {
common_redirect(common_local_url('login'), 303);
}
return false;
}
$this->profile_uri = $this->arg('profile');
return true;
}