summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvan Prodromou <evan@prodromou.name>2008-06-17 22:52:53 -0400
committerEvan Prodromou <evan@prodromou.name>2008-06-17 22:52:53 -0400
commit073281c0f4d741f1528e407235874ebdcb2ba64d (patch)
tree280b4779e1b58680a55889e26536429669f390ec
parentd4341f03c27b59695d4b2829e1d328c2af0475eb (diff)
don't put fake spaces in the text area
darcs-hash:20080618025253-84dde-3a9f3dceccc366b069b931b4159d8160c1ad62ce.gz
-rw-r--r--lib/util.php15
1 files changed, 8 insertions, 7 deletions
diff --git a/lib/util.php b/lib/util.php
index 1a29fcda9..ced829dbb 100644
--- a/lib/util.php
+++ b/lib/util.php
@@ -346,11 +346,11 @@ function common_submit($id, $label) {
function common_textarea($id, $label, $content=NULL, $instructions=NULL) {
common_element_start('p');
common_element('label', array('for' => $id), $label);
- common_element('textarea', array('rows' => 3,
- 'cols' => 40,
- 'name' => $id,
- 'id' => $id),
- ($content) ? $content : ' ');
+ common_element_start('textarea', array('rows' => 3,
+ 'cols' => 40,
+ 'name' => $id,
+ 'id' => $id));
+ common_element_end('textarea');
if ($instructions) {
common_element('span', 'input_instructions', $instructions);
}
@@ -646,8 +646,9 @@ function common_notice_form() {
common_element('label', array('for' => 'status_update',
'id' => 'status_label'),
_t('What\'s up, ').$user->nickname.'?');
- common_element('textarea', array('id' => 'status_textarea',
- 'name' => 'status_textarea'));
+ common_element_start('textarea', array('id' => 'status_textarea',
+ 'name' => 'status_textarea'));
+ common_element_end('textarea');
common_element('input', array('id' => 'status_submit',
'name' => 'status_submit',
'type' => 'submit',