Details
-
Type:
Bug
-
Status: Closed
-
Priority:
Critical
-
Resolution: Fixed
-
Affects Version/s: 2.7.5, 2.8.3
-
Labels:
-
Environment:apache 2.4.10 - 2.4.7
PHP 5.5.21 - 5.5.9
opcache enabled
-
Database:MySQL
-
Testing Instructions:
-
Affected Branches:MOODLE_27_STABLE, MOODLE_28_STABLE
-
Fixed Branches:MOODLE_27_STABLE, MOODLE_28_STABLE
-
Pull from Repository:
-
Pull Master Branch:
MDL-49145_master -
Pull Master Diff URL:
Description
The links generated in the events context column of the log report are all links to /report/log/1
Error visible on qa.moodle.net
Error not existing on demo.moodle.net
I suspect it is a cache issue, as when you change line 199 from the file
report/log/classes/table_log.php
if ($url = $context->get_url() && empty($this->download)) {
|
$contextname = html_writer::link($url, $contextname);
|
into
if ($url = $context->get_url() && empty($this->download)) {
|
$contextname = html_writer::link($context->get_url(), $contextname);
|
the error disappears.
Attachments
Issue Links
- blocks
-
MDL-48595 Log exports still consume all memory and fail
-
- Closed
-
- has been marked as being related by
-
MDL-48702 Improve course log export resource consumption and reliability (backport of MDL-34867)
-
- Closed
-
- is a regression caused by
-
MDL-46626 Log report export contains html
-
- Closed
-
- is duplicated by
-
MDL-49162 report_log Event context link not working after MDL-34867
-
- Closed
-