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
commit ed0e14aee5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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