diff options
author | Evan Prodromou <evan@prodromou.name> | 2008-05-20 13:47:59 -0400 |
---|---|---|
committer | Evan Prodromou <evan@prodromou.name> | 2008-05-20 13:47:59 -0400 |
commit | 6f6aed821387075de8c22da55c5620c04cda0dc1 (patch) | |
tree | 8716a289525c274c03c7c1a2910fbdf465f343aa /actions/profilesettings.php | |
parent | 8e81943c2c6588be7e4c695172e757243b7a0d74 (diff) |
better forms for new theme
darcs-hash:20080520174759-84dde-7206aeef3246b2304d463b121a6b17c7f3f2f6d5.gz
Diffstat (limited to 'actions/profilesettings.php')
-rw-r--r-- | actions/profilesettings.php | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/actions/profilesettings.php b/actions/profilesettings.php index 15c455fe2..ab8175901 100644 --- a/actions/profilesettings.php +++ b/actions/profilesettings.php @@ -46,10 +46,7 @@ class ProfilesettingsAction extends SettingsAction { ($this->arg('bio')) ? $this->arg('bio') : $profile->bio); common_input('location', _t('Location'), ($this->arg('location')) ? $this->arg('location') : $profile->location); - common_element('input', array('name' => 'submit', - 'type' => 'submit', - 'id' => 'submit', - 'value' => _t('Save'))); + common_submit('submit', _t('Save')); common_element_end('form'); common_show_footer(); } |