]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - actions/newnotice.php
fixup textarea again
[quix0rs-gnu-social.git] / actions / newnotice.php
index 23f31028bc94d7df46eb459da0112ffdc58fa3e3..faf9b21ef6ae80248efa658fe5fdca9ee8081956 100644 (file)
@@ -48,7 +48,8 @@ class NewnoticeAction extends Action {
                assert($notice);
                $notice->profile_id = $user->id; # user id *is* profile id
                $notice->created = DB_DataObject_Cast::dateTime();
-               $notice->content = trim($this->arg('content'));
+               # Default theme uses 'content' for something else
+               $notice->content = trim($this->arg('noticecontent'));
 
                $val = $notice->validate();
                if ($val === TRUE) {
@@ -58,18 +59,10 @@ class NewnoticeAction extends Action {
                        return NULL;
                }
        }
-
+       
        function show_form() {
                common_show_header(_t('New notice'));
-               common_element_start('form', array('id' => 'newnotice', 'method' => 'POST',
-                                                                                  'action' => common_local_url('newnotice')));
-               common_element('span', 'nickname', $profile->nickname);
-               common_element('textarea', array('rows' => 3, 'cols' => 60,
-                                                                                'name' => 'content',
-                                                                                'id' => 'content'),
-                                          ' ');
-               common_submit('submit', _t('Send'));
-               common_element_end('form');
+               common_notice_form();
                common_show_footer();
        }
 }
\ No newline at end of file