wrap notice form in p

darcs-hash:20080610193649-84dde-a735d4c6fdb6d808f727dc79215e7014523555ee.gz
This commit is contained in:
Evan Prodromou 2008-06-10 15:36:49 -04:00
parent bcac7e56ee
commit 81fd41f64d
1 changed files with 2 additions and 0 deletions

View File

@ -590,6 +590,7 @@ function common_notice_form() {
common_element_start('form', array('id' => 'status_form',
'method' => 'POST',
'action' => common_local_url('newnotice')));
common_element_start('p');
common_element('label', array('for' => 'status_update',
'id' => 'status_label'),
_t('What\'s up, ').$user->nickname.'?');
@ -597,6 +598,7 @@ function common_notice_form() {
common_element('input', array('id' => 'status_submit',
'type' => 'submit',
'value' => _t('Send')));
common_element_end('p');
common_element_end('form');
}