diff options
Diffstat (limited to 'actions/showstream.php')
-rw-r--r-- | actions/showstream.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/actions/showstream.php b/actions/showstream.php index fff7c9f56..fe561680a 100644 --- a/actions/showstream.php +++ b/actions/showstream.php @@ -83,10 +83,10 @@ class ShowstreamAction extends StreamAction { function notice_form() { common_element_start('form', array('id' => 'newnotice', 'method' => 'POST', 'action' => common_local_url('newnotice'))); - common_start_element('textarea', array('rows' => 4, 'cols' => 80, + common_element_start('textarea', array('rows' => 4, 'cols' => 80, 'name' => 'content', 'id' => 'content')); - common_end_element('textarea'); + common_element_end('textarea'); common_element('input', array('type' => 'submit', 'value' => 'Send')); common_element_end('form'); } |