From: Tom Hughes Date: Tue, 19 Dec 2023 12:12:21 +0000 (+0000) Subject: Fix erblint warning X-Git-Tag: live~360 X-Git-Url: https://git.openstreetmap.org/rails.git/commitdiff_plain/21ba79b86112cf918920e03f925cb5814066f898 Fix erblint warning --- diff --git a/app/views/browse/history.html.erb b/app/views/browse/history.html.erb index ebf8bcb30..fd1f5ffc5 100644 --- a/app/views/browse/history.html.erb +++ b/app/views/browse/history.html.erb @@ -2,7 +2,7 @@ <%= render "sidebar_header", :title => t("browse.#{@type}.history_title_html", :name => printable_name(@feature)) %> -<%= render :partial => @type, :collection => @feature.send("old_#{@type}s").reverse %> +<%= render :partial => @type, :collection => @feature.send(:"old_#{@type}s").reverse %>
<%= link_to(t("browse.download_xml"), :controller => "api/old_#{@type.pluralize}", :action => "history") %>