diff options
author | thomascube <thomas@roundcube.net> | 2006-12-20 14:06:33 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2006-12-20 14:06:33 +0000 |
commit | 2bca6e1da0e46f93297a7f60ff449b6c6ebac239 (patch) | |
tree | 7bdec5b01b6a4c150e99716f7cb3f3ed7d55c1a5 /program/steps/settings/edit_identity.inc | |
parent | cfdf044df284d294e0e73efb10ebce1052264694 (diff) |
New (strict) quoting for all kind of strings
Diffstat (limited to 'program/steps/settings/edit_identity.inc')
-rw-r--r-- | program/steps/settings/edit_identity.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/steps/settings/edit_identity.inc b/program/steps/settings/edit_identity.inc index 1ea8947b7..5fa531a11 100644 --- a/program/steps/settings/edit_identity.inc +++ b/program/steps/settings/edit_identity.inc @@ -127,7 +127,7 @@ function rcube_identity_form($attrib) $out .= sprintf("<tr><td class=\"title\"><label for=\"%s\">%s</label></td><td>%s</td></tr>\n", $attrib['id'], - rep_specialchars_output(rcube_label($label)), + Q(rcube_label($label)), $value); } |