diff options
author | Daniel Hoffend <dh@dotlan.net> | 2015-02-17 23:14:27 (GMT) |
---|---|---|
committer | Daniel Hoffend <dh@dotlan.net> | 2015-02-17 23:14:27 (GMT) |
commit | c49af8e285556d5c7ba27c30987c3633e952f4e1 (patch) | |
tree | 0853f7ebac977ebede654f78451a6e5e19887408 | |
parent | 4f264bed6b5e50741b653c5961280c2180680b03 (diff) | |
download | kolab-wap-c49af8e285556d5c7ba27c30987c3633e952f4e1.tar.gz |
fixed cn creation
-rw-r--r-- | lib/api/kolab_api_service_form_value.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/api/kolab_api_service_form_value.php b/lib/api/kolab_api_service_form_value.php index bd53f9c..3f40310 100644 --- a/lib/api/kolab_api_service_form_value.php +++ b/lib/api/kolab_api_service_form_value.php @@ -576,8 +576,8 @@ class kolab_api_service_form_value extends kolab_api_service } } + $cn = $postdata['cn']; $imap_hierarchysep = '/'; - $cn = $this->generate_cn_resource($postdata, $attribs); return $cn ? 'shared' . $imap_hierarchysep . $cn . '@' . $_SESSION['user']->get_domain() : ''; } |