]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Extended formData()'s hidden to use a specific @id and @name
authorsarven <csarven@plantard.controlezvous.ca>
Thu, 15 Jan 2009 19:22:03 +0000 (19:22 +0000)
committersarven <csarven@plantard.controlezvous.ca>
Thu, 15 Jan 2009 19:22:03 +0000 (19:22 +0000)
lib/noticeform.php

index 0a4f486db216ba9b63072a377906f319bb924178..9bc5e0d6a3e261cc4f9385caa99f4b4c7b8f6a23 100644 (file)
@@ -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');
 
     }