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:48:40 +08:00
parent 6109f2112c
commit dd15ef0e1b

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();
}
/**