Merge pull request #1097 from kelvinhammond/patch-1

Fix issue with accounts in select map not matching
This commit is contained in:
James Cole
2018-01-06 07:23:21 +01:00
committed by GitHub

View File

@@ -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;
}