summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorEvan Prodromou <evan@prodromou.name>2008-06-10 17:16:14 -0400
committerEvan Prodromou <evan@prodromou.name>2008-06-10 17:16:14 -0400
commit276b5d7cb02eb8e3b3408e6bbff150a3dedf5db6 (patch)
treeebd3ad88bd8b8d6e3f31654dcf710b3eeb928b3f /lib
parentef1918a14d34498067553c582977bcea3c058bad (diff)
better form handling
darcs-hash:20080610211614-84dde-34fe91876d37f1a5a6a1368f199378949c56c1b8.gz
Diffstat (limited to 'lib')
-rw-r--r--lib/util.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/util.php b/lib/util.php
index 900149fc2..2326e8bfa 100644
--- a/lib/util.php
+++ b/lib/util.php
@@ -587,8 +587,10 @@ 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'));
+ common_element('textarea', array('id' => 'status_textarea',
+ 'name' => 'status_textarea'));
common_element('input', array('id' => 'status_submit',
+ 'name' => 'status_submit',
'type' => 'submit',
'value' => _t('Send')));
common_element_end('p');