From e300c1aab467e0324a4a1a7812fe6099229793f3 Mon Sep 17 00:00:00 2001 From: Kelvin Date: Sat, 6 Jan 2018 00:40:17 -0500 Subject: [PATCH] Fix issue with accounts in select map not matching When mapping Opposing Accounts the select input's values are incorrect and do not match account ids. --- app/Import/Mapper/OpposingAccounts.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Import/Mapper/OpposingAccounts.php b/app/Import/Mapper/OpposingAccounts.php index 24c5c6a973..dcead219f5 100644 --- a/app/Import/Mapper/OpposingAccounts.php +++ b/app/Import/Mapper/OpposingAccounts.php @@ -57,7 +57,7 @@ class OpposingAccounts implements MapperInterface } $list[$accountId] = $name; } - $list = array_merge([0 => trans('import.map_do_not_map')], $list); + $list = ["0" => trans('import.map_do_not_map')] + $list; return $list; }