From f5d23fe92e3a71667caf554c8d5373861cc39a10 Mon Sep 17 00:00:00 2001 From: Eileen McNaughton Date: Mon, 9 May 2022 23:13:20 +1200 Subject: [PATCH] [Import] Fix 5.50 error url --- CRM/Contact/Import/Form/Summary.php | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/CRM/Contact/Import/Form/Summary.php b/CRM/Contact/Import/Form/Summary.php index ab86d5bcda..6ca002b3c7 100644 --- a/CRM/Contact/Import/Form/Summary.php +++ b/CRM/Contact/Import/Form/Summary.php @@ -80,9 +80,6 @@ class CRM_Contact_Import_Form_Summary extends CRM_Import_Form_Summary { $this->assign('dupeActionString', $dupeActionString); $properties = [ - 'downloadErrorRecordsUrl', - 'duplicateRowCount', - 'downloadDuplicateRecordsUrl', 'downloadMismatchRecordsUrl', 'groupAdditions', 'tagAdditions', @@ -95,8 +92,9 @@ class CRM_Contact_Import_Form_Summary extends CRM_Import_Form_Summary { $this->assign('totalRowCount', $this->getRowCount()); $this->assign('validRowCount', $this->getRowCount(CRM_Import_Parser::VALID)); $this->assign('invalidRowCount', $this->getRowCount(CRM_Import_Parser::ERROR)); + $this->assign('duplicateRowCount', $this->getRowCount(CRM_Import_Parser::DUPLICATE)); $this->assign('downloadDuplicateRecordsUrl', $this->getDownloadURL(CRM_Import_Parser::DUPLICATE)); - + $this->assign('downloadErrorRecordsUrl', $this->getDownloadURL(CRM_Import_Parser::ERROR)); $session = CRM_Core_Session::singleton(); $session->pushUserContext(CRM_Utils_System::url('civicrm/import/contact', 'reset=1')); } -- 2.25.1