From 3522c1dca424e15ada02a32cd5f99c5d4ee75720 Mon Sep 17 00:00:00 2001 From: Nicolas Connault Date: Wed, 7 Nov 2012 14:52:09 +0800 Subject: [PATCH] MDL-36413 Added "this->" to exclude variable assignment The this-> keyword was missing from the $exclude = array() statement. --- user/selector/lib.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/user/selector/lib.php b/user/selector/lib.php index 2319332f952..f757f31f949 100644 --- a/user/selector/lib.php +++ b/user/selector/lib.php @@ -137,7 +137,7 @@ abstract class user_selector_base { * Clear the list of excluded user ids. */ public function clear_exclusions() { - $exclude = array(); + $this->exclude = array(); } /** -- 2.43.0