diff options
author | sarven <csarven@plantard.controlezvous.ca> | 2009-01-23 01:20:48 +0000 |
---|---|---|
committer | sarven <csarven@plantard.controlezvous.ca> | 2009-01-23 01:20:48 +0000 |
commit | 0711d45ef315e2349bb37f24b8a7cf85eafef96e (patch) | |
tree | 1e4d11b6ca70c0dbe4c04ab475bda194cc8fc064 /actions/subedit.php | |
parent | 135f00c51bfd71e1ecb112f6813ed12c84549621 (diff) | |
parent | f54f0a179a0369e145f02c8caed44644a8be6167 (diff) |
Merge branch 'master' of ../trunk
Diffstat (limited to 'actions/subedit.php')
-rw-r--r-- | actions/subedit.php | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/actions/subedit.php b/actions/subedit.php index e22384869..89081ffc7 100644 --- a/actions/subedit.php +++ b/actions/subedit.php @@ -21,12 +21,10 @@ if (!defined('LACONICA')) { exit(1); } class SubeditAction extends Action { - var $profile = null; function prepare($args) { - parent::prepare($args); if (!common_logged_in()) { @@ -37,8 +35,9 @@ class SubeditAction extends Action $token = $this->trimmed('token'); if (!$token || $token != common_session_token()) { - $this->clientError(_('There was a problem with your session token. Try again, please.')); - return; + $this->clientError(_('There was a problem with your session token. '. + 'Try again, please.')); + return false; } $id = $this->trimmed('profile'); |