]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
wrap notice form in p
authorEvan Prodromou <evan@prodromou.name>
Tue, 10 Jun 2008 19:36:49 +0000 (15:36 -0400)
committerEvan Prodromou <evan@prodromou.name>
Tue, 10 Jun 2008 19:36:49 +0000 (15:36 -0400)
darcs-hash:20080610193649-84dde-a735d4c6fdb6d808f727dc79215e7014523555ee.gz

lib/util.php

index 267bb188df50ab6d17b1305458245f63eeb8bb2e..1e301455584e097bb38aac2b027204ad16a2602d 100644 (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');
 }