summaryrefslogtreecommitdiffstats
path: root/app/views/layouts
diff options
context:
space:
mode:
authorGo MAEDA <maeda@farend.jp>2020-01-26 22:09:47 +0000
committerGo MAEDA <maeda@farend.jp>2020-01-26 22:09:47 +0000
commitd168df5c822f305cb510d072144c39f205b1bd3d (patch)
tree1933e0a6d1ab488c2826b0b44989acc719ad9a7c /app/views/layouts
parent1c5ab7510dfa3acf2e9d785b12c52b3684b23fba (diff)
downloadredmine-d168df5c822f305cb510d072144c39f205b1bd3d.tar.gz
redmine-d168df5c822f305cb510d072144c39f205b1bd3d.zip
Rails 6: Use "render template:" instead of "render file:" in app/views/layouts/admin.html.erb (#32887).
Patch by Go MAEDA. git-svn-id: http://svn.redmine.org/redmine/trunk@19466 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/layouts')
-rw-r--r--app/views/layouts/admin.html.erb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/layouts/admin.html.erb b/app/views/layouts/admin.html.erb
index 8f23129b4..07f194300 100644
--- a/app/views/layouts/admin.html.erb
+++ b/app/views/layouts/admin.html.erb
@@ -5,4 +5,4 @@
<% end %>
<% end %>
-<%= render :file => "layouts/base" %>
+<%= render template: 'layouts/base' %>