summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorEvan Prodromou <evan@prodromou.name>2008-05-20 17:23:19 -0400
committerEvan Prodromou <evan@prodromou.name>2008-05-20 17:23:19 -0400
commit82c05d389ab0a0bb64a339d0cf3547d3c6ada3ae (patch)
treeb5f86a2726b14c760ef85c6f52ac0fe62f297fb3 /lib
parent48eaede398859927e9ccdc39b21e26f1832c9910 (diff)
fixup textarea again
darcs-hash:20080520212319-84dde-27601a4e11dd6a34834f4689c316dae594d8d7e8.gz
Diffstat (limited to 'lib')
-rw-r--r--lib/util.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/util.php b/lib/util.php
index a92204aa6..e4699bf1a 100644
--- a/lib/util.php
+++ b/lib/util.php
@@ -235,7 +235,8 @@ function common_submit($id, $label) {
function common_textarea($id, $label, $content=NULL) {
common_element_start('p');
common_element('label', array('for' => $id), $label);
- common_element('textarea', array('rows' => 3, 'cols' => 40,
+ common_element('textarea', array('rows' => 3,
+ 'cols' => 40,
'name' => $id,
'id' => $id,
'class' => 'width50'),
@@ -392,7 +393,7 @@ function common_profile_url($nickname) {
function common_notice_form() {
common_element_start('form', array('id' => 'newnotice', 'method' => 'POST',
'action' => common_local_url('newnotice')));
- common_textarea('content', _t('What\'s up?'));
+ common_textarea('noticecontent', _t('What\'s up?'));
common_submit('submit', _t('Send'));
common_element_end('form');
}