diff options
author | Evan Prodromou <evan@controlyourself.ca> | 2009-01-15 19:25:26 +0000 |
---|---|---|
committer | Evan Prodromou <evan@controlyourself.ca> | 2009-01-15 19:25:26 +0000 |
commit | f0b4e7094c509bf5830586e3e05382e754adf3db (patch) | |
tree | d3c1e9628e13264a2dcd28bb07f7b28d56dffef4 | |
parent | 6a8be40a8cdce09cd994adc4ba3877cf15436128 (diff) | |
parent | c6d22e4cea3c875fd5ea1e10483fc28060887b4b (diff) |
Merge branch 'uiredesign' of /var/www/csarven into uiredesign
-rw-r--r-- | lib/noticeform.php | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/lib/noticeform.php b/lib/noticeform.php index 0a4f486db..9bc5e0d6a 100644 --- a/lib/noticeform.php +++ b/lib/noticeform.php @@ -143,12 +143,10 @@ class NoticeForm extends Form $this->out->elementEnd('dl'); if ($this->action) { - // FIXME: or VERIFY that notice_return-to doesn't break anything. Changed from 'returnto' - $this->out->hidden('notice_return-to', $this->action); + $this->out->hidden('notice_return-to', $this->action, 'returnto'); } - // FIXME: Does this need to be checked like returnto? - $this->out->hidden('notice_in-reply-to', $this->action); + $this->out->hidden('notice_in-reply-to', $this->action, 'inreplyto'); } |