-
Bug
-
Resolution: Fixed
-
Minor
-
2.7, 2.8
-
MOODLE_27_STABLE, MOODLE_28_STABLE
-
MOODLE_27_STABLE
-
MDL-45978_master -
If you watch the log entries on the page "Site administration / Reports / Logs" and you choose a course in first select box (parameter: id) after clicking on "Get these logs" the table looks fine but the page navigation is rendered without the param "id". So if you on "Next" the logs of the whole site is shown.
The fix is easy. Add the following lines in index.php on line 47:
if ($id) { |
$params['id'] = $id; |
}
|