-
Bug
-
Resolution: Fixed
-
Minor
-
3.8.3, 3.8.4, 3.9, 3.9.1
-
MOODLE_38_STABLE, MOODLE_39_STABLE
-
MOODLE_38_STABLE, MOODLE_39_STABLE
-
MDL-68968-master -
$req_capability in lib/adminlib.php should be declared as an array rather than a string
/** @var string The role capability/permission a user must have to access this external page. */
public $req_capability;
Should be:
/** @var array The role capabilities/permissions a user must have to access this external page. */
public $req_capability;