-
Bug
-
Resolution: Fixed
-
Minor
-
3.10 regressions, 3.10, 3.11, 4.0
-
MOODLE_310_STABLE, MOODLE_311_STABLE, MOODLE_400_STABLE
-
MOODLE_310_STABLE
-
MDL-66222 added this line to lib/classes/antivirus/scanner.php
require_once(__DIR__ . '../../../../iplookup/lib.php'); |
this is an invalid path (missing / and too many ..), and it should really look like this:
require_once($CFG->dirroot . '/iplookup/lib.php'); |