]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - lib/messageform.php
Extended profile - fix some issues saving and displaying dates
[quix0rs-gnu-social.git] / lib / messageform.php
index 7f21f7ecd0e11d8b63c3880cc883a3e726c95ad2..733e83cd15ea09044b5273f955de1885c6cf0c09 100644 (file)
@@ -96,7 +96,7 @@ class MessageForm extends Form
 
     function formClass()
     {
-        return 'form_notice';
+        return 'form_notice ajax-notice';
     }
 
     /**
@@ -153,7 +153,7 @@ class MessageForm extends Form
         $this->out->dropdown('to', _('To'), $mutual, null, false,
                              ($this->to) ? $this->to->id : null);
 
-        $this->out->element('textarea', array('id' => 'notice_data-text',
+        $this->out->element('textarea', array('class' => 'notice_data-text',
                                               'cols' => 35,
                                               'rows' => 4,
                                               'name' => 'content'),
@@ -163,8 +163,7 @@ class MessageForm extends Form
 
         if ($contentLimit > 0) {
             $this->out->element('span',
-                                array('id' => 'notice_text-count',
-                                      'class' => 'form_note'),
+                                array('class' => 'count'),
                                 $contentLimit);
         }
     }