From b839529da4301e20595fee951084e2b928d9e7c8 Mon Sep 17 00:00:00 2001
From: Alex Weber <alexweber15@gmail.com>
Date: Sun, 18 Dec 2011 01:06:34 -0200
Subject: [PATCH] #1060700

added scope="row" to first cell in each row in the forum and topic listing templates
---
 core/modules/forum/forum-list.tpl.php       |    2 +-
 core/modules/forum/forum-topic-list.tpl.php |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/core/modules/forum/forum-list.tpl.php b/core/modules/forum/forum-list.tpl.php
index 257cea9..0755f38 100644
--- a/core/modules/forum/forum-list.tpl.php
+++ b/core/modules/forum/forum-list.tpl.php
@@ -44,7 +44,7 @@
   <tbody>
   <?php foreach ($forums as $child_id => $forum): ?>
     <tr id="forum-list-<?php print $child_id; ?>" class="<?php print $forum->zebra; ?>">
-      <td <?php print $forum->is_container ? 'colspan="4" class="container"' : 'class="forum"'; ?>>
+      <td <?php print $forum->is_container ? 'colspan="4" class="container"' : 'class="forum"'; ?> scope="row">
         <?php /* Enclose the contents of this cell with X divs, where X is the
                * depth this forum resides at. This will allow us to use CSS
                * left-margin for indenting.
diff --git a/core/modules/forum/forum-topic-list.tpl.php b/core/modules/forum/forum-topic-list.tpl.php
index 3390703..198a91d 100644
--- a/core/modules/forum/forum-topic-list.tpl.php
+++ b/core/modules/forum/forum-topic-list.tpl.php
@@ -40,7 +40,7 @@
   <tbody>
   <?php foreach ($topics as $topic): ?>
     <tr class="<?php print $topic->zebra;?>">
-      <td class="icon"><?php print $topic->icon; ?></td>
+      <td class="icon" scope="row"><?php print $topic->icon; ?></td>
       <td class="title">
         <div>
           <?php print $topic->title; ?>
-- 
1.7.4.4

