summaryrefslogtreecommitdiff
path: root/actions/logout.php
diff options
context:
space:
mode:
authorEvan Prodromou <evan@prodromou.name>2008-06-19 14:32:38 -0400
committerEvan Prodromou <evan@prodromou.name>2008-06-19 14:32:38 -0400
commit480ca70dc8de827211c01a3ac1d75d148a21fbd9 (patch)
tree179c969bf455a13af41f4607c91767916ac9c2bd /actions/logout.php
parentaabac60b6eb04b7f4c25a96fa1c103baf1cf53e0 (diff)
try to clear openid url cookie better
darcs-hash:20080619183238-84dde-dbe912a40894ec7414e6d5ea0bc40ec527385436.gz
Diffstat (limited to 'actions/logout.php')
-rw-r--r--actions/logout.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/actions/logout.php b/actions/logout.php
index 9cdda52d8..c4d0bd4e7 100644
--- a/actions/logout.php
+++ b/actions/logout.php
@@ -27,8 +27,8 @@ class LogoutAction extends Action {
if (!common_logged_in()) {
common_user_error(_t('Not logged in.'));
} else {
- common_set_user(NULL);
oid_clear_last();
+ common_set_user(NULL);
common_redirect(common_local_url('public'));
}
}