From 21ba79b86112cf918920e03f925cb5814066f898 Mon Sep 17 00:00:00 2001 From: Tom Hughes Date: Tue, 19 Dec 2023 12:12:21 +0000 Subject: [PATCH] Fix erblint warning --- app/views/browse/history.html.erb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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") %> -- 2.45.1