diff options
author | thomascube <thomas@roundcube.net> | 2008-09-15 14:53:57 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2008-09-15 14:53:57 +0000 |
commit | f645ce169e11339d45cbc0b5b4cf6154346fd4c7 (patch) | |
tree | 119de2f39e224d28c5fc8be0967bfb43e4320a27 /program/steps/settings/save_identity.inc | |
parent | 3e1e7750834edfe0062c83d66690f4fe4521b8ba (diff) |
Redesign of the identities settings + add config option to disable multiple identities
Diffstat (limited to 'program/steps/settings/save_identity.inc')
-rw-r--r-- | program/steps/settings/save_identity.inc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/program/steps/settings/save_identity.inc b/program/steps/settings/save_identity.inc index 1eb9a9026..de2b4fc19 100644 --- a/program/steps/settings/save_identity.inc +++ b/program/steps/settings/save_identity.inc @@ -77,7 +77,7 @@ if ($_POST['_iid']) } // insert a new identity record -else +else if ($RCMAIL->config->get('multiple_identities', true)) { if ($insert_id = $USER->insert_identity($save_data)) { @@ -96,6 +96,8 @@ else return; } } +else + $OUTPUT->show_message('opnotpermitted', 'error'); // mark all other identities as 'not-default' |