summaryrefslogtreecommitdiffstats
path: root/app/views/enumerations
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2010-05-09 11:19:15 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2010-05-09 11:19:15 +0000
commit0fa124a92ca7608543575fe24cfd8cec78441e9f (patch)
tree20890ab23f0fa12c7b68457328ddfb675ab0856d /app/views/enumerations
parent36c82ecc1f0da922014c480930500896750b1e03 (diff)
downloadredmine-0fa124a92ca7608543575fe24cfd8cec78441e9f.tar.gz
redmine-0fa124a92ca7608543575fe24cfd8cec78441e9f.zip
Adds missing thead tags (#5440).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@3734 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/enumerations')
-rw-r--r--app/views/enumerations/list.rhtml4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/enumerations/list.rhtml b/app/views/enumerations/list.rhtml
index 29927e104..62e3f648d 100644
--- a/app/views/enumerations/list.rhtml
+++ b/app/views/enumerations/list.rhtml
@@ -5,14 +5,14 @@
<% enumerations = klass.shared %>
<% if enumerations.any? %>
-<table class="list">
+<table class="list"><thead>
<tr>
<th><%= l(:field_name) %></th>
<th style="width:15%;"><%= l(:field_is_default) %></th>
<th style="width:15%;"><%= l(:field_active) %></th>
<th style="width:15%;"></th>
<th align="center" style="width:10%;"> </th>
-</tr>
+</tr></thead>
<% enumerations.each do |enumeration| %>
<tr class="<%= cycle('odd', 'even') %>">
<td><%= link_to h(enumeration), :action => 'edit', :id => enumeration %></td>