summaryrefslogtreecommitdiff
path: root/actions/profilesettings.php
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 /actions/profilesettings.php
parent41a149b74a4628a67ed2fd85b63cb81ba48a63f9 (diff)
extract textarea code and make bio a textarea
darcs-hash:20080520211945-84dde-06c9f0884b3dba3e01fe7e0d71662da162c34418.gz
Diffstat (limited to 'actions/profilesettings.php')
-rw-r--r--actions/profilesettings.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/actions/profilesettings.php b/actions/profilesettings.php
index e65840bda..a8ae2c97a 100644
--- a/actions/profilesettings.php
+++ b/actions/profilesettings.php
@@ -42,8 +42,8 @@ class ProfilesettingsAction extends SettingsAction {
($this->arg('email')) ? $this->arg('email') : $user->email);
common_input('homepage', _t('Homepage'),
($this->arg('homepage')) ? $this->arg('homepage') : $profile->homepage);
- common_input('bio', _t('Bio'),
- ($this->arg('bio')) ? $this->arg('bio') : $profile->bio);
+ common_textarea('bio', _t('Bio'),
+ ($this->arg('bio')) ? $this->arg('bio') : $profile->bio);
common_input('location', _t('Location'),
($this->arg('location')) ? $this->arg('location') : $profile->location);
common_submit('submit', _t('Save'));