]> git.openstreetmap.org Git - rails.git/blobdiff - app/helpers/geocoder_helper.rb
Improve test coverage
[rails.git] / app / helpers / geocoder_helper.rb
index f0663108e41e59337fa0c794714d6d116cee5238..e135917a9240886c22c5dbca7417ab272bd348ac 100644 (file)
@@ -11,13 +11,14 @@ module GeocoderHelper
     end
 
     result.each do |key, value|
-      html_options[:data][key.to_s.tr('_', '-')] = value
+      html_options[:data][key.to_s.tr("_", "-")] = value
     end
 
     html = ""
     html << result[:prefix] if result[:prefix]
     html << " " if result[:prefix] && result[:name]
     html << link_to(result[:name], url, html_options) if result[:name]
+    html << " " if result[:suffix] && result[:name]
     html << result[:suffix] if result[:suffix]
     html.html_safe
   end