From 37034cd4a30eddf0f09312b9ece81c3b80c4bc20 Mon Sep 17 00:00:00 2001 From: Dan Marsden Date: Tue, 7 Jul 2020 19:19:39 +1200 Subject: [PATCH] Correct use of property_exists! --- classes/page_with_filter_controls.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/classes/page_with_filter_controls.php b/classes/page_with_filter_controls.php index 6e1fe91..94f78e6 100644 --- a/classes/page_with_filter_controls.php +++ b/classes/page_with_filter_controls.php @@ -171,7 +171,7 @@ class mod_attendance_page_with_filter_controls { private function calc_sessgroupslist_sesstype() { global $SESSION; - if (!property_exists('attsessiontype', $SESSION)) { + if (!property_exists($SESSION, 'attsessiontype')) { $SESSION->attsessiontype = array($this->cm->course => self::SESSTYPE_ALL); } else if (!array_key_exists($this->cm->course, $SESSION->attsessiontype)) { $SESSION->attsessiontype[$this->cm->course] = self::SESSTYPE_ALL;