summaryrefslogtreecommitdiff
path: root/program/steps/settings/save_identity.inc
diff options
context:
space:
mode:
authorthomascube <thomas@roundcube.net>2008-05-19 17:47:45 +0000
committerthomascube <thomas@roundcube.net>2008-05-19 17:47:45 +0000
commitc1b3c4cc3168d41b97256bcc3d8dd70d2a404788 (patch)
tree307697c95caaf9b30fefb2d9b7ac498a4b26f438 /program/steps/settings/save_identity.inc
parentd7f3d796a240ed830346e74de46e108cc3fb4d3a (diff)
Don't check for non-existing property -> fix address book
Diffstat (limited to 'program/steps/settings/save_identity.inc')
-rw-r--r--program/steps/settings/save_identity.inc10
1 files changed, 2 insertions, 8 deletions
diff --git a/program/steps/settings/save_identity.inc b/program/steps/settings/save_identity.inc
index a35d2d73d..1eb9a9026 100644
--- a/program/steps/settings/save_identity.inc
+++ b/program/steps/settings/save_identity.inc
@@ -76,7 +76,7 @@ if ($_POST['_iid'])
}
}
-// insert a new contact
+// insert a new identity record
else
{
if ($insert_id = $USER->insert_identity($save_data))
@@ -87,12 +87,6 @@ else
if (!empty($_POST['_standard']))
$default_id = $insert_id;
-
- if ($_POST['_framed'])
- {
- // add contact row or jump to the page where it should appear
- // ....
- }
}
else
{
@@ -109,6 +103,6 @@ if ($default_id)
$USER->set_default($default_id);
// go to next step
-rcmail_overwrite_action($OUTPUT->action ? 'edit-identity' : 'identities');
+rcmail_overwrite_action('identities');
?> \ No newline at end of file