]> git.openstreetmap.org Git - rails.git/blobdiff - app/controllers/browse_controller.rb
make diff upload result a "diffResult" rather than "osm" document
[rails.git] / app / controllers / browse_controller.rb
index 94a8a09a0c49b1a5f9d30466aed8c7927fda20ae..2c6c3dc5f6e26f42de0f5bc298407e8be71a5062 100644 (file)
@@ -118,6 +118,8 @@ class BrowseController < ApplicationController
       @changeset = Changeset.find(params[:id])
       
       @title = "Changeset | #{@changeset.id}"
+      @next = Changeset.find(:first, :order => "id ASC", :conditions => [ "id > :id", { :id => @changeset.id }] ) 
+      @prev = Changeset.find(:first, :order => "id DESC", :conditions => [ "id < :id", { :id => @changeset.id }] ) 
     rescue ActiveRecord::RecordNotFound
       @type = "changeset"
       render :action => "not_found", :status => :not_found