diff options
author | alecpl <alec@alec.pl> | 2011-05-27 13:01:05 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2011-05-27 13:01:05 +0000 |
commit | 516467080bd822cb94a4a9ef58a168dcdaf7535b (patch) | |
tree | 79dbd8e0463985fba5af3de12130b6aa4ccf97fc /program/steps/settings/save_identity.inc | |
parent | d7344819834e469c2e5875f756f1ad973b2e06d9 (diff) |
- Fix handling of "<" character in contact data, search fields and folder names, identity name and organization fields (#1487864)
Diffstat (limited to 'program/steps/settings/save_identity.inc')
-rw-r--r-- | program/steps/settings/save_identity.inc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/program/steps/settings/save_identity.inc b/program/steps/settings/save_identity.inc index 4fb6a2a9f..b2957a78b 100644 --- a/program/steps/settings/save_identity.inc +++ b/program/steps/settings/save_identity.inc @@ -22,17 +22,17 @@ define('IDENTITIES_LEVEL', intval($RCMAIL->config->get('identities_level', 0))); $a_save_cols = array('name', 'email', 'organization', 'reply-to', 'bcc', 'standard', 'signature', 'html_signature'); -$a_html_cols = array('signature'); +$a_html_cols = array('signature', 'name', 'organization'); $a_boolean_cols = array('standard', 'html_signature'); $updated = $default_id = false; // check input if (empty($_POST['_name']) || (empty($_POST['_email']) && IDENTITIES_LEVEL != 1 && IDENTITIES_LEVEL != 3)) - { +{ $OUTPUT->show_message('formincomplete', 'warning'); rcmail_overwrite_action('edit-identity'); return; - } +} $save_data = array(); |