Generate properly RSS column. It was breaking styled (colored) rows.

Merged from MOODLE_15_STABLE
This commit is contained in:
stronk7 2005-06-10 09:04:59 +00:00
parent 373da1d463
commit a9022f9e9b

View file

@ -220,7 +220,7 @@
$row[] = $trackedlink; // Tracking.
}
$row[] = $sublink;
if (!empty($rsslink)) {
if ($show_rss) {
$row[] = $rsslink;
}
$generaltable->data[] = $row;
@ -230,7 +230,7 @@
$row[] = $unreadlink;
$row[] = $trackedlink; // Tracking.
}
if (!empty($rsslink)) {
if ($show_rss) {
$row[] = $rsslink;
}
$generaltable->data[] = $row;
@ -373,7 +373,7 @@
$row[] = $trackedlink; // Tracking.
}
$row[] = $sublink;
if (!empty($rsslink)) {
if ($show_rss) {
$row[] = $rsslink;
}
$learningtable->data[] = $row;
@ -384,7 +384,7 @@
$row[] = $unreadlink;
$row[] = $trackedlink; // Tracking.
}
if (!empty($rsslink)) {
if ($show_rss) {
$row[] = $rsslink;
}
$learningtable->data[] = $row;