summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorEvan Prodromou <evan@prodromou.name>2008-05-20 17:19:45 -0400
committerEvan Prodromou <evan@prodromou.name>2008-05-20 17:19:45 -0400
commit48eaede398859927e9ccdc39b21e26f1832c9910 (patch)
treeaad4c8d61524bf7222b473a33c0e6ed8b7d703d3 /lib
parent41a149b74a4628a67ed2fd85b63cb81ba48a63f9 (diff)
extract textarea code and make bio a textarea
darcs-hash:20080520211945-84dde-06c9f0884b3dba3e01fe7e0d71662da162c34418.gz
Diffstat (limited to 'lib')
-rw-r--r--lib/util.php20
1 files changed, 12 insertions, 8 deletions
diff --git a/lib/util.php b/lib/util.php
index 23b944333..a92204aa6 100644
--- a/lib/util.php
+++ b/lib/util.php
@@ -232,6 +232,17 @@ function common_submit($id, $label) {
common_element_end('p');
}
+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,
+ 'name' => $id,
+ 'id' => $id,
+ 'class' => 'width50'),
+ ($content) ? $content : ' ');
+ common_element_end('p');
+}
+
# salted, hashed passwords are stored in the DB
function common_munge_password($id, $password) {
@@ -381,14 +392,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_element_start('p');
- common_element('label', array('for' => 'content'), _t('What\'s up?'));
- common_element('textarea', array('rows' => 3, 'cols' => 40,
- 'name' => 'content',
- 'id' => 'content',
- 'class' => 'width50'),
- ' ');
- common_element_end('p');
+ common_textarea('content', _t('What\'s up?'));
common_submit('submit', _t('Send'));
common_element_end('form');
}