]> git.openstreetmap.org Git - rails.git/blobdiff - app/controllers/search_controller.rb
Standardise on double quoted strings
[rails.git] / app / controllers / search_controller.rb
index 7cd6f4ca7413704b3cff9f00b9d622f8b2e72691..0217bb29e021cef6ec3ab6e79fa3a8add4f48748 100644 (file)
@@ -22,24 +22,24 @@ class SearchController < ApplicationController
   end
 
   def do_search(do_ways, do_nodes, do_relations)
-    type = params['type']
-    value = params['value']
+    type = params["type"]
+    value = params["value"]
     unless type || value
-      name = params['name']
+      name = params["name"]
       if name
-        type = 'name'
+        type = "name"
         value = name
       end
     end
 
     if do_nodes
-      response.headers['Error'] = "Searching of nodes is currently unavailable"
+      response.headers["Error"] = "Searching of nodes is currently unavailable"
       render :text => "", :status => :service_unavailable
       return false
     end
 
     unless value
-      response.headers['Error'] = "Searching for a key without value is currently unavailable"
+      response.headers["Error"] = "Searching for a key without value is currently unavailable"
       render :text => "", :status => :service_unavailable
       return false
     end