summaryrefslogtreecommitdiff
path: root/lib/settingsaction.php
diff options
context:
space:
mode:
authorEvan Prodromou <evan@controlyourself.ca>2009-08-04 13:10:37 -0400
committerEvan Prodromou <evan@controlyourself.ca>2009-08-04 13:10:37 -0400
commit8f122dd71efcc54b820629bc4c39efe91b8e8726 (patch)
treea3fd54baeddcf0e3a64dd7cae07d99723a34f232 /lib/settingsaction.php
parent9421b36498f856ca7f29c3b803b99521590d58c5 (diff)
new action for when we redirect to login page
Diffstat (limited to 'lib/settingsaction.php')
-rw-r--r--lib/settingsaction.php10
1 files changed, 6 insertions, 4 deletions
diff --git a/lib/settingsaction.php b/lib/settingsaction.php
index 17d3a2f64..4cf9b80c4 100644
--- a/lib/settingsaction.php
+++ b/lib/settingsaction.php
@@ -77,10 +77,12 @@ class SettingsAction extends CurrentUserDesignAction
// _all_ our settings are important
common_set_returnto($this->selfUrl());
$user = common_current_user();
- if ($user->hasOpenID()) {
- common_redirect(common_local_url('openidlogin'), 303);
- } else {
- common_redirect(common_local_url('login'), 303);
+ if (Event::handle('RedirectToLogin', array($this, $user))) {
+ if ($user->hasOpenID()) {
+ common_redirect(common_local_url('openidlogin'), 303);
+ } else {
+ common_redirect(common_local_url('login'), 303);
+ }
}
} else if ($_SERVER['REQUEST_METHOD'] == 'POST') {
$this->handlePost();