From: Tim Otten Date: Fri, 3 Jun 2022 07:11:04 +0000 (-0700) Subject: Merge pull request #23283 from eileenmcnaughton/import_saved_map X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=24f0a1cc8fb046130a65f8cd52a0de7caf4841f6;p=civicrm-core.git Merge pull request #23283 from eileenmcnaughton/import_saved_map [REF] Remove handling for non-existent 'savedMapping' field --- 24f0a1cc8fb046130a65f8cd52a0de7caf4841f6 diff --cc CRM/Contact/Import/Form/MapField.php index 39e4ca1dce,7a6663124a..9a1d3174da --- a/CRM/Contact/Import/Form/MapField.php +++ b/CRM/Contact/Import/Form/MapField.php @@@ -392,15 -382,11 +392,8 @@@ class CRM_Contact_Import_Form_MapField */ public function postProcess() { $params = $this->controller->exportValues('MapField'); - - //reload the mapfield if load mapping is pressed - if (!empty($params['savedMapping'])) { - $this->set('savedMapping', $params['savedMapping']); - $this->controller->resetPage($this->_name); - return; - } $this->updateUserJobMetadata('submitted_values', $this->getSubmittedValues()); - $parser = $this->submit($params); - - // add all the necessary variables to the form - $parser->set($this); + $this->submit($params); } /**