Skip to content

Commit

Permalink
Generate properly RSS column. It was breaking styled (colored) rows.
Browse files Browse the repository at this point in the history
Merged from MOODLE_15_STABLE
  • Loading branch information
stronk7 committed Jun 10, 2005
1 parent 373da1d commit a9022f9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions mod/forum/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@
$row[] = $trackedlink; // Tracking.
}
$row[] = $sublink;
if (!empty($rsslink)) {
if ($show_rss) {
$row[] = $rsslink;
}
$generaltable->data[] = $row;
Expand All @@ -230,7 +230,7 @@
$row[] = $unreadlink;
$row[] = $trackedlink; // Tracking.
}
if (!empty($rsslink)) {
if ($show_rss) {
$row[] = $rsslink;
}
$generaltable->data[] = $row;
Expand Down Expand Up @@ -373,7 +373,7 @@
$row[] = $trackedlink; // Tracking.
}
$row[] = $sublink;
if (!empty($rsslink)) {
if ($show_rss) {
$row[] = $rsslink;
}
$learningtable->data[] = $row;
Expand All @@ -384,7 +384,7 @@
$row[] = $unreadlink;
$row[] = $trackedlink; // Tracking.
}
if (!empty($rsslink)) {
if ($show_rss) {
$row[] = $rsslink;
}
$learningtable->data[] = $row;
Expand Down

0 comments on commit a9022f9

Please sign in to comment.