summaryrefslogtreecommitdiff
path: root/lib/noticeform.php
diff options
context:
space:
mode:
authorsarven <csarven@plantard.controlezvous.ca>2009-01-15 19:22:03 +0000
committersarven <csarven@plantard.controlezvous.ca>2009-01-15 19:22:03 +0000
commitc6d22e4cea3c875fd5ea1e10483fc28060887b4b (patch)
treec79508115da9ecabafcb8d2fac7461067f1ad35b /lib/noticeform.php
parent47f694582c8bb668ad711182bc7124fe2db0f339 (diff)
Extended formData()'s hidden to use a specific @id and @name
Diffstat (limited to 'lib/noticeform.php')
-rw-r--r--lib/noticeform.php6
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');
}