]> source.dussan.org Git - redmine.git/commitdiff
Fixes non-matching html tag (#1734).
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Sun, 3 Aug 2008 09:30:56 +0000 (09:30 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Sun, 3 Aug 2008 09:30:56 +0000 (09:30 +0000)
git-svn-id: http://redmine.rubyforge.org/svn/trunk@1714 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/views/wiki/history.rhtml

index 6462e9fdd477751f5a9cbb38e8c204951268aeea..c78ae115ad618b14e0f2e164dcc11ab9f3ee2759 100644 (file)
@@ -18,7 +18,7 @@
 <% line_num = 1 %>
 <% @versions.each do |ver| %>
 <tr class="<%= cycle("odd", "even") %>">
-    <td class="id"><%= link_to ver.version, :action => 'index', :page => @page.title, :version => ver.version %></th>
+    <td class="id"><%= link_to ver.version, :action => 'index', :page => @page.title, :version => ver.version %></td>
     <td class="checkbox"><%= radio_button_tag('version', ver.version, (line_num==1), :id => "cb-#{line_num}", :onclick => "$('cbto-#{line_num+1}').checked=true;") if show_diff && (line_num < @versions.size) %></td>
     <td class="checkbox"><%= radio_button_tag('version_from', ver.version, (line_num==2), :id => "cbto-#{line_num}", :onclick => "if ($('cb-#{line_num}').checked==true || $('version_from').value > #{ver.version}) {$('cb-#{line_num-1}').checked=true;}") if show_diff && (line_num > 1) %></td>
     <td align="center"><%= format_time(ver.updated_on) %></td>