diff --git a/location.inc b/location.inc index f22a24dd3f97da8dfb62f43771b20127d7dfcc34..73e2548dcf51a1eea7de1c5ce5f4c4523d92bf54 100644 --- a/location.inc +++ b/location.inc @@ -52,7 +52,7 @@ function location_map_link($location = array(), $link_text = 'See map') { } */ -function location_map_link($location = array(), $link_text = 'See map') { +function location_map_link($location = array(), $link_text = 'See map: ') { if (!isset($location['country']) && $location['country'] != 'xx') { return ''; } @@ -72,7 +72,7 @@ function location_map_link($location = array(), $link_text = 'See map') { } } if (count($links)) { - return t($link_text) . ':' . implode($links, ", "); + return t($link_text) . implode($links, ", "); } else { return NULL;