diff options
Diffstat (limited to 'actions/newnotice.php')
-rw-r--r-- | actions/newnotice.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/actions/newnotice.php b/actions/newnotice.php index b15232dec..9fc910318 100644 --- a/actions/newnotice.php +++ b/actions/newnotice.php @@ -54,11 +54,11 @@ class NewnoticeAction extends Action { } function show_form() { - common_start_element('form', array('id' => 'newnotice', 'method' => 'POST', + 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, 'id' => 'content')); common_element('input', array('type' => 'submit'), 'Send'); - common_end_element('form'); + common_element_end('form'); } }
\ No newline at end of file |