mirror of
https://github.com/moodle/moodle.git
synced 2025-03-13 20:26:32 +01:00
MDL-25981 fix inverted instanceof in require_login
This commit is contained in:
parent
d6f4508c36
commit
4714815123
@ -2315,7 +2315,7 @@ function require_login($courseorid = NULL, $autologinguest = true, $cm = NULL, $
|
||||
throw new coding_exception('course and cm parameters in require_login() call do not match!!');
|
||||
}
|
||||
// make sure we have a $cm from get_fast_modinfo as this contains activity access details
|
||||
if ($cm instanceof cm_info) {
|
||||
if (!($cm instanceof cm_info)) {
|
||||
// note: nearly all pages call get_fast_modinfo anyway and it does not make any
|
||||
// db queries so this is not really a performance concern, however it is obviously
|
||||
// better if you use get_fast_modinfo to get the cm before calling this.
|
||||
|
Loading…
x
Reference in New Issue
Block a user