From 0ca5fea0cc893684982894e474a00176853535e6 Mon Sep 17 00:00:00 2001 From: Christian Weiske Date: Thu, 3 Oct 2013 20:26:34 +0200 Subject: [PATCH] fix missing space in company address --- inc/functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inc/functions.php b/inc/functions.php index 84a29f2..add970c 100644 --- a/inc/functions.php +++ b/inc/functions.php @@ -541,7 +541,7 @@ function addCoords(&$coords, $entry, $geocoder) $busi->address = '' . $entry['organization'] . '
' . $entry['givenname'] . ' ' . $entry['name'] . '

' . $entry['street'] . '
' - . $entry['zip'] . $entry['location']; + . $entry['zip'] . ' ' . $entry['location']; $coords[] = $busi; } } -- 2.39.2