From 87a2f686f0c0477a33ffe563321cc3eda89e021f Mon Sep 17 00:00:00 2001 From: alecpl Date: Fri, 24 Jun 2011 18:46:37 +0000 Subject: - Fix contacts copying (#1487967) --- program/steps/addressbook/func.inc | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'program/steps/addressbook/func.inc') diff --git a/program/steps/addressbook/func.inc b/program/steps/addressbook/func.inc index 0f2d75705..f7f3dbfe9 100644 --- a/program/steps/addressbook/func.inc +++ b/program/steps/addressbook/func.inc @@ -670,7 +670,7 @@ function rcmail_get_cids() // containing contact ID and source name in form: - $cid = get_input_value('_cid', RCUBE_INPUT_GPC); - $source = get_input_value('_source', RCUBE_INPUT_GPC); + $source = (string) get_input_value('_source', RCUBE_INPUT_GPC); if (!preg_match('/^[a-zA-Z0-9\+\/=_-]+(,[a-zA-Z0-9\+\/=_-]+)*$/', $cid)) { return array(); @@ -686,10 +686,7 @@ function rcmail_get_cids() if (!$got_source) { list ($c, $s) = explode('-', $id, 2); if (strlen($s)) { - $result[$s][] = $c; - } - else if (strlen($source)) { - $result[$source][] = $c; + $result[(string)$s][] = $c; } } else { -- cgit v1.2.3