summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorEvan Prodromou <evan@controlezvous.ca>2008-06-26 17:53:08 -0400
committerEvan Prodromou <evan@controlezvous.ca>2008-06-26 17:53:08 -0400
commit877f56851cd81751d1a2d6f983d2fe8b45e9978f (patch)
tree27a7912a6f41206a9e258ad02c0b4cc0aa8eba9f /lib
parente9dd281735be3aeb9c759a5202fe8b7550a82037 (diff)
better formatting for notice instructions
darcs-hash:20080626215308-34904-872bd73f57b618e9f5670d47ee26da993f81a431.gz
Diffstat (limited to 'lib')
-rw-r--r--lib/util.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/util.php b/lib/util.php
index 5639f791d..7670c73cf 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');
}