diff options
author | Evan Prodromou <evan@controlyourself.ca> | 2009-02-04 15:40:36 -0500 |
---|---|---|
committer | Evan Prodromou <evan@controlyourself.ca> | 2009-02-04 15:40:36 -0500 |
commit | a97f8f6a43b27b3392ef9b03be58e37d743f394d (patch) | |
tree | e4ac4bb75b4218de840994f459ec11644820acc8 /actions | |
parent | 2bd52059dbcc2ece561daba73963c66d410ad89e (diff) | |
parent | df41b1307f9a2690115e246e584d6a398d4f9730 (diff) |
merge from dev/0.7.x
Diffstat (limited to 'actions')
-rw-r--r-- | actions/newnotice.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actions/newnotice.php b/actions/newnotice.php index 61f0f8365..5e7691f33 100644 --- a/actions/newnotice.php +++ b/actions/newnotice.php @@ -90,7 +90,7 @@ class NewnoticeAction extends Action $this->clientError(_('Not logged in.')); } else if ($_SERVER['REQUEST_METHOD'] == 'POST') { - // CSRF protection - token set in common_notice_form() + // CSRF protection $token = $this->trimmed('token'); if (!$token || $token != common_session_token()) { $this->clientError(_('There was a problem with your session token. '. |