From 671ee353e8a6f832ad44d7c7fa48270f90647cf6 Mon Sep 17 00:00:00 2001 From: Romain Quetiez Date: Mon, 1 Dec 2014 19:12:19 +0000 Subject: [PATCH] #1027 Regression introduced in [3148] thus in 2.0.3 (cache the reconciliation for external keys on the CSV import) a cache hit on an ambiguous external key was not correctly handled SVN:trunk[3440] --- core/bulkchange.class.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/bulkchange.class.inc.php b/core/bulkchange.class.inc.php index af335ecb2..a9c25368c 100644 --- a/core/bulkchange.class.inc.php +++ b/core/bulkchange.class.inc.php @@ -432,7 +432,7 @@ class BulkChange break; default: - $aErrors[$sAttCode] = Dict::Format('UI:CSVReport-Value-Issue-FoundMany', $oExtObjects->Count()); + $aErrors[$sAttCode] = Dict::Format('UI:CSVReport-Value-Issue-FoundMany', $iCount); $aResults[$sAttCode]= new CellStatus_Ambiguous($oTargetObj->Get($sAttCode), $iCount, $sOQL); } }