diff options
Diffstat (limited to 'actions/newnotice.php')
-rw-r--r-- | actions/newnotice.php | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/actions/newnotice.php b/actions/newnotice.php index dd1f71b41..bc177de98 100644 --- a/actions/newnotice.php +++ b/actions/newnotice.php @@ -57,9 +57,10 @@ class NewnoticeAction extends Action { 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' => 4, 'cols' => 80, - 'name' => 'content', - 'id' => 'content')); + common_start_element('textarea', array('rows' => 4, 'cols' => 80, + 'name' => 'content', + 'id' => 'content')); + common_end_element('textarea'); common_element('input', array('type' => 'submit', 'value' => 'Send')); common_element_end('form'); common_show_footer(); |