diff options
author | Evan Prodromou <evan@controlyourself.ca> | 2009-01-15 14:31:49 -0500 |
---|---|---|
committer | Evan Prodromou <evan@controlyourself.ca> | 2009-01-15 14:31:49 -0500 |
commit | 87120106721a079e3b45baa918f379fa7c9cf361 (patch) | |
tree | 13b18ae94ac58eee836c2a0bcdd91ecfd7c6f303 | |
parent | 51730719acd183631ca8e335cb5fb8887fd5ac46 (diff) | |
parent | f0b4e7094c509bf5830586e3e05382e754adf3db (diff) |
Merge branch 'uiredesign' of evan@dev.controlyourself.ca:/var/www/evan 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'); } |