X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/a25b7953b3889ce6847a13c579fa9fd32219b5e3..0a6d1a8dabd6a51c6f2b7de73ea8644a650d9dca:/app/controllers/notes_controller.rb?ds=inline diff --git a/app/controllers/notes_controller.rb b/app/controllers/notes_controller.rb index c47a3abfb..4b4f3d651 100644 --- a/app/controllers/notes_controller.rb +++ b/app/controllers/notes_controller.rb @@ -44,5 +44,8 @@ class NotesController < ApplicationController render :template => "browse/not_found", :status => :not_found end - def new; end + def new + @anonymous_notes_count = request.cookies["_osm_anonymous_notes_count"].to_i || 0 + render :action => :new_readonly if api_status != "online" + end end