1 class OldNodesController < OldElementsController
4 @feature = Node.preload(:node_tags, :old_nodes => [:old_tags, { :changeset => [:changeset_tags, :user] }]).find(params[:id])
5 render "browse/history"
6 rescue ActiveRecord::RecordNotFound
7 render "browse/not_found", :status => :not_found
12 @feature = OldNode.preload(:old_tags, :changeset => [:changeset_tags, :user]).find([params[:id], params[:version]])
13 rescue ActiveRecord::RecordNotFound
14 render :action => "not_found", :status => :not_found