MDL-36413 Added "this->" to exclude variable assignment

The this-> keyword was missing from the $exclude = array() statement.
This commit is contained in:
Nicolas Connault
2012-11-07 14:52:09 +08:00
parent d402e05ba7
commit 3522c1dca4
+1 -1
View File
@@ -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();
}
/**