Skip to content

Commit

Permalink
MDL-36413 Added "this->" to exclude variable assignment
Browse files Browse the repository at this point in the history
The this-> keyword was missing from the $exclude = array() statement.
  • Loading branch information
nicolasconnault committed Nov 7, 2012
1 parent 6109f21 commit dd15ef0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion user/selector/lib.php
Expand Up @@ -137,7 +137,7 @@ public function exclude($arrayofuserids) {
* Clear the list of excluded user ids.
*/
public function clear_exclusions() {
$exclude = array();
$this->exclude = array();
}

/**
Expand Down

0 comments on commit dd15ef0

Please sign in to comment.