From b1e2e6b8b3f7dd6fdbc424373be21967b38260b6 Mon Sep 17 00:00:00 2001 From: Petr Skoda Date: Fri, 23 Apr 2010 09:11:16 +0000 Subject: [PATCH 1/1] MDL-21781 fixed incorrect options in user selectors --- cohort/lib.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cohort/lib.php b/cohort/lib.php index 2eda91de6be..0ab87621cdd 100644 --- a/cohort/lib.php +++ b/cohort/lib.php @@ -149,6 +149,7 @@ class cohort_candidate_selector extends user_selector_base { protected function get_options() { $options = parent::get_options(); $options['cohortid'] = $this->cohortid; + $options['file'] = 'cohort/lib.php'; return $options; } } @@ -211,6 +212,7 @@ class cohort_existing_selector extends user_selector_base { protected function get_options() { $options = parent::get_options(); $options['cohortid'] = $this->cohortid; + $options['file'] = 'cohort/lib.php'; return $options; } } -- 2.43.0