]> git.sur5r.net Git - contagged/commitdiff
fix missing space in company address
authorChristian Weiske <cweiske@cweiske.de>
Thu, 3 Oct 2013 18:26:34 +0000 (20:26 +0200)
committerChristian Weiske <cweiske@cweiske.de>
Thu, 3 Oct 2013 18:26:34 +0000 (20:26 +0200)
inc/functions.php

index 84a29f2539a7c978bc57b856b398f0d9a5500008..add970ca8bcb73c58ac51673fedb40c84698e664 100644 (file)
@@ -541,7 +541,7 @@ function addCoords(&$coords, $entry, $geocoder)
         $busi->address = '<b>' . $entry['organization'] . '<br/>'
             . $entry['givenname'] . ' ' . $entry['name'] . '</b><br/>'
             . $entry['street'] . '<br/>'
-            . $entry['zip'] . $entry['location'];
+            . $entry['zip'] . ' ' . $entry['location'];
         $coords[] = $busi;
     }
 }