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