summaryrefslogtreecommitdiffstats
path: root/app/views/groups
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/groups
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/groups')
-rw-r--r--app/views/groups/_memberships.html.erb4
-rw-r--r--app/views/groups/_users.html.erb4
2 files changed, 4 insertions, 4 deletions
diff --git a/app/views/groups/_memberships.html.erb b/app/views/groups/_memberships.html.erb
index 613f05e2d..e5d84a17a 100644
--- a/app/views/groups/_memberships.html.erb
+++ b/app/views/groups/_memberships.html.erb
@@ -4,11 +4,11 @@
<div class="splitcontentleft">
<% if @group.memberships.any? %>
<table class="list memberships">
- <thead>
+ <thead><tr>
<th><%= l(:label_project) %></th>
<th><%= l(:label_role_plural) %></th>
<th style="width:15%"></th>
- </thead>
+ </tr></thead>
<tbody>
<% @group.memberships.each do |membership| %>
<% next if membership.new_record? %>
diff --git a/app/views/groups/_users.html.erb b/app/views/groups/_users.html.erb
index 48c216ee9..d3a789936 100644
--- a/app/views/groups/_users.html.erb
+++ b/app/views/groups/_users.html.erb
@@ -1,10 +1,10 @@
<div class="splitcontentleft">
<% if @group.users.any? %>
<table class="list users">
- <thead>
+ <thead><tr>
<th><%= l(:label_user) %></th>
<th style="width:15%"></th>
- </thead>
+ </tr></thead>
<tbody>
<% @group.users.sort.each do |user| %>
<tr id="user-<%= user.id %>" class="<%= cycle 'odd', 'even' %>">