-
Bug
-
Resolution: Fixed
-
Minor
-
4.1 regressions
Here's the incorrect code that was recently added to lib/classes/lock/lock_config.php and cache/classes/loaders.php
if (defined('MDL_PERF') || !empty($CFG->perfdebug)) { |
Here's the correct code that already existed in lib/classes/shutdown_manager.php
if ((defined('MDL_PERF') && MDL_PERF) || (!empty($CFG->perfdebug) && $CFG->perfdebug > 7)) { |