summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorEvan Prodromou <evan@prodromou.name>2008-06-10 15:36:49 -0400
committerEvan Prodromou <evan@prodromou.name>2008-06-10 15:36:49 -0400
commit81fd41f64db95218f0364287b1f084500000395c (patch)
tree2061060f4646d502fc1fb1e486a02bd76295b5a9 /lib
parentbcac7e56ee63fd827a78e0f110f089f218735865 (diff)
wrap notice form in p
darcs-hash:20080610193649-84dde-a735d4c6fdb6d808f727dc79215e7014523555ee.gz
Diffstat (limited to 'lib')
-rw-r--r--lib/util.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/util.php b/lib/util.php
index 267bb188d..1e3014555 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');
}