Details
Description
In the page that is in charge of generate the forums of a course (mod/forum/index.php), if we have the tracking disable, in the next learningforum. the link that we use to disable the tracking is not working. It gets the id's of the previous forum.
To fix the problem
we have to add the following code in the file index.php
-
-
- 353,356 ****
- 353,359 ----
-
if ($forum->trackingtype == FORUM_TRACKING_OPTIONAL) {
$trackedlink = '<a title="'.$strnotrackforum.'" href="settracking.php?id='.$forum->id.'">'.$stryes.'</a>';
}
+ else
} else
{ $unreadlink = '-'; $trackedlink = '<a title="'.$strtrackforum.'" href="settracking.php?id='.$forum->id.'">'.$strno.'</a>'; }}