diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2008-08-03 09:30:56 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2008-08-03 09:30:56 +0000 |
commit | 91a5fa32d7b0bd1bcebead3213091134dfc3df2b (patch) | |
tree | 9f694d9bb02e1fa1df91ce477ec835f8b74db19b /app/views/wiki | |
parent | d1a504f768f1903ea1a1a0b5178b6d5ae5a6dcf2 (diff) | |
download | redmine-91a5fa32d7b0bd1bcebead3213091134dfc3df2b.tar.gz redmine-91a5fa32d7b0bd1bcebead3213091134dfc3df2b.zip |
Fixes non-matching html tag (#1734).
git-svn-id: http://redmine.rubyforge.org/svn/trunk@1714 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/wiki')
-rw-r--r-- | app/views/wiki/history.rhtml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/wiki/history.rhtml b/app/views/wiki/history.rhtml index 6462e9fdd..c78ae115a 100644 --- a/app/views/wiki/history.rhtml +++ b/app/views/wiki/history.rhtml @@ -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> |