1
0
mirror of https://github.com/meineerde/redmine.git synced 2026-02-01 03:57:15 +00:00

Removes render_ prefix from cancel_button_tag methods (#8888).

git-svn-id: http://svn.redmine.org/redmine/trunk@17523 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Jean-Philippe Lang 2018-09-26 07:49:48 +00:00
parent 6c0aa5cb89
commit dc4bb0fb06
4 changed files with 5 additions and 5 deletions

View File

@ -1307,7 +1307,7 @@ module ApplicationHelper
hidden_field_tag('back_url', url, :id => nil) unless url.blank?
end
def render_cancel_button_tag(fallback_url)
def cancel_button_tag(fallback_url)
url = back_url.blank? ? fallback_url : back_url
link_to l(:button_cancel), url
end

View File

@ -115,9 +115,9 @@ module TimelogHelper
end
end
def render_cancel_button_tag_for_time_entry(project)
def cancel_button_tag_for_time_entry(project)
fallback_path = project ? project_time_entries_path(project) : time_entries_path
render_cancel_button_tag(fallback_path)
cancel_button_tag(fallback_path)
end
end

View File

@ -3,5 +3,5 @@
<%= labelled_form_for @time_entry, :url => time_entry_path(@time_entry), :html => {:multipart => true} do |f| %>
<%= render :partial => 'form', :locals => {:f => f} %>
<%= submit_tag l(:button_save) %>
<%= render_cancel_button_tag_for_time_entry(@project) %>
<%= cancel_button_tag_for_time_entry(@project) %>
<% end %>

View File

@ -4,5 +4,5 @@
<%= render :partial => 'form', :locals => {:f => f} %>
<%= submit_tag l(:button_create) %>
<%= submit_tag l(:button_create_and_continue), :name => 'continue' %>
<%= render_cancel_button_tag_for_time_entry(@project) %>
<%= cancel_button_tag_for_time_entry(@project) %>
<% end %>