From: Christian Weiske Date: Thu, 3 Oct 2013 18:26:34 +0000 (+0200) Subject: fix missing space in company address X-Git-Tag: 0.8.0~4^2 X-Git-Url: https://git.sur5r.net/?p=contagged;a=commitdiff_plain;h=0ca5fea0cc893684982894e474a00176853535e6 fix missing space in company address --- 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; } }