Merge: Fix for postal code

This commit is contained in:
Hillel Coren 2018-02-14 15:42:00 +02:00
parent e5c1a19a70
commit 35860e6156

View File

@ -93,7 +93,7 @@ class ClientPresenter extends EntityPresenter
$city = e($client->{$prefix . 'city'});
$state = e($client->{$prefix . 'state'});
$postalCode = e($client->{$prefix . 'post_code'});
$postalCode = e($client->{$prefix . 'postal_code'});
if ($city || $state || $postalCode) {
return Utils::cityStateZip($city, $state, $postalCode, $swap);