diff options
author | thomascube <thomas@roundcube.net> | 2011-12-14 11:53:02 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2011-12-14 11:53:02 +0000 |
commit | e19229ce09c0233a93584925b2e4fed7370e6650 (patch) | |
tree | 721700b8380a2d2f104108925ba63e402acca2a9 /program/steps | |
parent | 28e18c75ef693740edc05e7474cf52452cc76157 (diff) |
Larry's identities settings and about page
Diffstat (limited to 'program/steps')
-rw-r--r-- | program/steps/settings/edit_identity.inc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/program/steps/settings/edit_identity.inc b/program/steps/settings/edit_identity.inc index df5cf9328..bf64d4265 100644 --- a/program/steps/settings/edit_identity.inc +++ b/program/steps/settings/edit_identity.inc @@ -5,7 +5,7 @@ | program/steps/settings/edit_identity.inc | | | | This file is part of the Roundcube Webmail client | - | Copyright (C) 2005-2007, The Roundcube Dev Team | + | Copyright (C) 2005-2011, The Roundcube Dev Team | | Licensed under the GNU GPL | | | | PURPOSE: | @@ -131,10 +131,10 @@ function rcube_identity_form($attrib) $value = !empty($colprop['value']) ? $colprop['value'] : rcmail_get_edit_field($col, $IDENTITY_RECORD[$col], $colprop, $colprop['type']); - $table->add('title', sprintf('<label for="%s">%s</label>', $colprop['id'], Q($label))); + $table->add('title', html::label($colprop['id'], Q($label))); $table->add(null, $value); } - $content = $table->show(); + $content = $table->show($attrib); } else { $content = $fieldset['content']; |