From 36d251b764a2a05047a754452bcb4991113c44ab Mon Sep 17 00:00:00 2001 From: Eileen McNaughton Date: Wed, 22 Mar 2023 16:29:54 +1300 Subject: [PATCH] Fix recently added import url my head hurts - every other import url follows the other format - ie civicrm/import/contribution & is defined in Import.xml Consistency wishmistancy --- CRM/Contribute/Import/Parser/Contribution.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CRM/Contribute/Import/Parser/Contribution.php b/CRM/Contribute/Import/Parser/Contribution.php index c915903bb5..3ea1b4e41c 100644 --- a/CRM/Contribute/Import/Parser/Contribution.php +++ b/CRM/Contribute/Import/Parser/Contribution.php @@ -52,7 +52,7 @@ class CRM_Contribute_Import_Parser_Contribution extends CRM_Import_Parser { 'name' => 'contribution_import', 'label' => ts('Contribution Import'), 'entity' => 'Contribution', - 'url' => 'civicrm/import/contribution', + 'url' => 'civicrm/contribute/import', ], ]; } -- 2.25.1