X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/cb80bd3b966e1f780b7a1db1cf2d32716643caea..50e5d49bc44181425cdfd798ab75ca108d1bf8a1:/app/controllers/old_ways_controller.rb diff --git a/app/controllers/old_ways_controller.rb b/app/controllers/old_ways_controller.rb index fe8814b2f..1b3ebd747 100644 --- a/app/controllers/old_ways_controller.rb +++ b/app/controllers/old_ways_controller.rb @@ -2,7 +2,6 @@ class OldWaysController < OldElementsController def index @type = "way" @feature = Way.preload(:way_tags, :old_ways => [:old_tags, { :changeset => [:changeset_tags, :user], :old_nodes => { :node => [:node_tags, :ways] } }]).find(params[:id]) - render "browse/history" rescue ActiveRecord::RecordNotFound render "browse/not_found", :status => :not_found end @@ -11,6 +10,6 @@ class OldWaysController < OldElementsController @type = "way" @feature = OldWay.preload(:old_tags, :changeset => [:changeset_tags, :user], :old_nodes => { :node => [:node_tags, :ways] }).find([params[:id], params[:version]]) rescue ActiveRecord::RecordNotFound - render :action => "not_found", :status => :not_found + render "browse/not_found", :status => :not_found end end