MDL-68536 core: Fix notice about undefined prop 'branch' in $CFG

This commit is contained in:
Matteo Scaramuccia
2020-09-30 14:43:42 +02:00
parent 8b026809c5
commit 6658d9fba1
+1 -1
View File
@@ -752,7 +752,7 @@ class core_plugin_manager {
public function all_plugins_ok($moodleversion, &$failedplugins = array(), $branch = null) {
global $CFG;
if (empty($branch)) {
$branch = $CFG->branch;
$branch = $CFG->branch ?? '';
if (empty($branch)) {
// During initial install there is no branch set.
require($CFG->dirroot . '/version.php');