diff options
author | thomascube <thomas@roundcube.net> | 2008-05-07 09:38:44 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2008-05-07 09:38:44 +0000 |
commit | 1854c4525bf1fce227a8cc0fa8aad06615df0eae (patch) | |
tree | 8af3b7c4ebcd34d037337688828f5091c1c39149 /program/steps/settings/edit_identity.inc | |
parent | eb774cc6eb2818a1bdeae6c316024f93c2533d4e (diff) |
More code cleanup + oop-ization
Diffstat (limited to 'program/steps/settings/edit_identity.inc')
-rw-r--r-- | program/steps/settings/edit_identity.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/program/steps/settings/edit_identity.inc b/program/steps/settings/edit_identity.inc index 0f849f172..18c5078ed 100644 --- a/program/steps/settings/edit_identity.inc +++ b/program/steps/settings/edit_identity.inc @@ -87,7 +87,7 @@ function rcube_identity_form($attrib) if (is_array($colprop)) { $out = $form_start; - $out .= rcmail_get_edit_field($attrib['part'], $IDENTITY_RECORD[$attrib['part']], $attrib, $colprop['type']); + $out .= rcmail_get_edit_field($attrib['part'], $IDENTITY_RECORD[$attrib['part']], $attrib + array('size' => 30), $colprop['type']); return $out; } else @@ -118,7 +118,7 @@ function rcube_identity_form($attrib) } else { - unset($attrib['size']); + $attrib['size'] = 40; unset($attrib['rows']); } |