diff options
author | alecpl <alec@alec.pl> | 2011-06-24 18:46:37 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2011-06-24 18:46:37 +0000 |
commit | 87a2f686f0c0477a33ffe563321cc3eda89e021f (patch) | |
tree | ebec17e19626f97ed726d73b9477f689a352fa41 /program/steps/addressbook/copy.inc | |
parent | 5bfa4445d52fc831330600e581656142b30f0ca3 (diff) |
- Fix contacts copying (#1487967)
Diffstat (limited to 'program/steps/addressbook/copy.inc')
-rw-r--r-- | program/steps/addressbook/copy.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/steps/addressbook/copy.inc b/program/steps/addressbook/copy.inc index 4ee885b3f..1e4e753b6 100644 --- a/program/steps/addressbook/copy.inc +++ b/program/steps/addressbook/copy.inc @@ -40,7 +40,7 @@ foreach ($cids as $source => $cid) // It maight happen when copying records from search result // Do nothing, go to next source - if ($target == $source) { + if ((string)$target == (string)$source) { continue; } |