diff options
author | Evan Prodromou <evan@controlezvous.ca> | 2008-06-26 17:53:08 -0400 |
---|---|---|
committer | Evan Prodromou <evan@controlezvous.ca> | 2008-06-26 17:53:08 -0400 |
commit | b73a06f7a28cb2a0c51b772aff0904e407eaeab9 (patch) | |
tree | ec31a898486749fdfa3db889d083c22b622e97fc /lib | |
parent | 877f56851cd81751d1a2d6f983d2fe8b45e9978f (diff) |
UNDO: better formatting for notice instructions
darcs-hash:20080626215308-34904-3dc92c082d793a92f3d3521f83ef38c009432d0b.gz
Diffstat (limited to 'lib')
-rw-r--r-- | lib/util.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/util.php b/lib/util.php index 7670c73cf..5639f791d 100644 --- a/lib/util.php +++ b/lib/util.php @@ -787,8 +787,6 @@ 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); } @@ -796,6 +794,8 @@ 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'); } |