X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=actions%2Fnewnotice.php;h=faf9b21ef6ae80248efa658fe5fdca9ee8081956;hb=82c05d389ab0a0bb64a339d0cf3547d3c6ada3ae;hp=23f31028bc94d7df46eb459da0112ffdc58fa3e3;hpb=52600ce0b063e68e622b19699841e41b5ddbf2d1;p=quix0rs-gnu-social.git diff --git a/actions/newnotice.php b/actions/newnotice.php index 23f31028bc..faf9b21ef6 100644 --- a/actions/newnotice.php +++ b/actions/newnotice.php @@ -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