From: Evan Prodromou Date: Thu, 26 Jun 2008 21:53:08 +0000 (-0400) Subject: better formatting for notice instructions X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=877f56851cd81751d1a2d6f983d2fe8b45e9978f;p=quix0rs-gnu-social.git better formatting for notice instructions darcs-hash:20080626215308-34904-872bd73f57b618e9f5670d47ee26da993f81a431.gz --- diff --git a/lib/util.php b/lib/util.php index 5639f791da..7670c73cf4 100644 --- a/lib/util.php +++ b/lib/util.php @@ -787,6 +787,8 @@ function common_notice_form($action=NULL, $content=NULL) { common_element('textarea', array('id' => 'status_textarea', 'name' => 'status_textarea'), ($content) ? $content : ' '); + common_element('span', 'input_instructions', + _t('Your current status, max 140 characters')); if ($action) { common_hidden('returnto', $action); } @@ -794,8 +796,6 @@ function common_notice_form($action=NULL, $content=NULL) { 'name' => 'status_submit', 'type' => 'submit', 'value' => _t('Send'))); - common_element('span', 'input_instructions', - _t('Your current status, max 140 characters')); common_element_end('p'); common_element_end('form'); }