diff options
author | Evan Prodromou <evan@prodromou.name> | 2008-05-17 15:57:24 -0400 |
---|---|---|
committer | Evan Prodromou <evan@prodromou.name> | 2008-05-17 15:57:24 -0400 |
commit | a88e18e5af2383f209fada762721a06488749d7f (patch) | |
tree | 69c93179278b55f4273dbeeb876cd33a02798bf1 /actions/newnotice.php | |
parent | a0bdc80053ce3b1d908aad6ab4a462b44b504e0c (diff) |
fix typo in newnotice
there was a typo, and I removed it.
darcs-hash:20080517195724-84dde-9a5bbde2f8be89dbeaf255e6ae8c5f392af63c64.gz
Diffstat (limited to 'actions/newnotice.php')
-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 96726fafb..50d676eb5 100644 --- a/actions/newnotice.php +++ b/actions/newnotice.php @@ -29,7 +29,7 @@ class NewnoticeAction extends Action { common_user_error(_t('Not logged in.')); } else if ($_SERVER['REQUEST_METHOD'] == 'POST') { $id = $this->save_new_notice(); -# if ($id) { + if ($id) { common_broadcast_notices($id); common_redirect(common_local_url('shownotice', array('notice' => $id)), 303); |