]> git.openstreetmap.org Git - rails.git/blobdiff - app/controllers/site_controller.rb
Fixed up the <title>/<h2> mess in trace/edit and trace/view
[rails.git] / app / controllers / site_controller.rb
index 58a009a3b81a4e2a98f844ebc5e784aa500d3cf3..daf8fead74ae0a62c4a1207848566938b2576211 100644 (file)
@@ -1,10 +1,9 @@
 class SiteController < ApplicationController
   before_filter :authorize_web
+  before_filter :set_locale
   before_filter :require_user, :only => [:edit]
 
-
-  def search
-    @tags = WayTag.find(:all, :conditions => ["match(v) against (?)", params[:query][:query].to_s] )
+  def export
+    render :action => 'index'
   end
-
 end