redirect ostatussub if not logged in
This commit is contained in:
parent
df7c6b37c8
commit
727773cdfa
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user