From 83d148242a573f48011b5de3de4f7532db45effa 2013-05-21 07:11:25 From: Toshi MARUYAMA Date: 2013-05-21 07:11:25 Subject: [PATCH] fix back-button on description diff page in case of no browser history (#13697) Contributed by Filou Centrinov. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@11893 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/app/views/journals/diff.html.erb b/app/views/journals/diff.html.erb index 21b8755..4d425f3 100644 --- a/app/views/journals/diff.html.erb +++ b/app/views/journals/diff.html.erb @@ -5,6 +5,9 @@ <%= simple_format_without_paragraph @diff.to_html %> -

<%= link_to l(:button_back), issue_path(@issue), :onclick => 'history.back(); return false;' %>

+

+ <%= link_to(l(:button_back), issue_path(@issue), + :onclick => 'if (history.length > 1) {history.back(); return false;}') %> +

<% html_title "#{@issue.tracker.name} ##{@issue.id}: #{@issue.subject}" %>