From: Evan Prodromou Date: Tue, 10 Jun 2008 19:36:49 +0000 (-0400) Subject: wrap notice form in p X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=81fd41f64db95218f0364287b1f084500000395c;p=quix0rs-gnu-social.git wrap notice form in p darcs-hash:20080610193649-84dde-a735d4c6fdb6d808f727dc79215e7014523555ee.gz --- diff --git a/lib/util.php b/lib/util.php index 267bb188df..1e30145558 100644 --- a/lib/util.php +++ b/lib/util.php @@ -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'); }