]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Using 'form_notice' class instead of 'form' to group both forms
authorSarven Capadisli <csarven@status.net>
Sat, 31 Oct 2009 16:16:37 +0000 (17:16 +0100)
committerSarven Capadisli <csarven@status.net>
Sat, 31 Oct 2009 16:16:37 +0000 (17:16 +0100)
lib/messageform.php
lib/noticeform.php

index e25ebfa08f29a2ecaf7a47ae17ff66156c0a34ca..b034be3122b4400528a194949232d455a8650e74 100644 (file)
@@ -80,10 +80,21 @@ class MessageForm extends Form
     /**
      * ID of the form
      *
-     * @return int ID of the form
+     * @return string ID of the form
      */
 
     function id()
+    {
+        return 'form_notice-direct';
+    }
+
+   /**
+     * Class of the form
+     *
+     * @return string class of the form
+     */
+
+    function formClass()
     {
         return 'form_notice';
     }
index 9864d15eb084dfb18fe4df869dddf25ef8ad2cc9..1be011c182fe83ff037500fb8b5cec13053be452 100644 (file)
@@ -105,7 +105,7 @@ class NoticeForm extends Form
     /**
      * ID of the form
      *
-     * @return int ID of the form
+     * @return string ID of the form
      */
 
     function id()
@@ -113,6 +113,17 @@ class NoticeForm extends Form
         return 'form_notice';
     }
 
+   /**
+     * Class of the form
+     *
+     * @return string class of the form
+     */
+
+    function formClass()
+    {
+        return 'form_notice';
+    }
+
     /**
      * Action of the form
      *