diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2008-06-09 19:02:22 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2008-06-09 19:02:22 +0000 |
commit | efe790a8d3ca2688e5ad639e7166b5f77adb7335 (patch) | |
tree | 2d8236cdcc894d3ddd1452e039930b6e6a059fe5 | |
parent | 19cb6f96f4bf3f10780e292d7b5b59d880b673e8 (diff) | |
download | redmine-efe790a8d3ca2688e5ad639e7166b5f77adb7335.tar.gz redmine-efe790a8d3ca2688e5ad639e7166b5f77adb7335.zip |
Removed inconsistent revision numbers on diff view.
git-svn-id: http://redmine.rubyforge.org/svn/trunk@1522 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r-- | app/views/common/_diff.rhtml | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/app/views/common/_diff.rhtml b/app/views/common/_diff.rhtml index c849b7ff7..b95ef116b 100644 --- a/app/views/common/_diff.rhtml +++ b/app/views/common/_diff.rhtml @@ -4,12 +4,6 @@ <table class="filecontent CodeRay"> <thead> <tr><th colspan="4" class="filename"><%= table_file.file_name %></th></tr> -<% unless @rev.nil? -%> -<tr> - <th colspan="2">@<%= format_revision @rev %></th> - <th colspan="2">@<%= format_revision @rev_to %></th> -</tr> -<% end -%> </thead> <tbody> <% prev_line_left, prev_line_right = nil, nil -%> @@ -36,13 +30,6 @@ <table class="filecontent CodeRay"> <thead> <tr><th colspan="3" class="filename"><%= table_file.file_name %></th></tr> -<% unless @rev.nil? -%> -<tr> - <th>@<%= format_revision @rev %></th> - <th>@<%= format_revision @rev_to %></th> - <th></th> -</tr> -<% end -%> </thead> <tbody> <% prev_line_left, prev_line_right = nil, nil -%> |