Home
Documentation
Downloads
Demo
Tracker
Development
Translation
Moodle.net
Search
projects
/
moodle.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
cec5baa
)
MDL-21781 fixed incorrect options in user selectors
author
Petr Skoda
<skodak@moodle.org>
Fri, 23 Apr 2010 09:11:16 +0000
(09:11 +0000)
committer
Petr Skoda
<skodak@moodle.org>
Fri, 23 Apr 2010 09:11:16 +0000
(09:11 +0000)
cohort/lib.php
patch
|
blob
|
blame
|
history
diff --git
a/cohort/lib.php
b/cohort/lib.php
index
2eda91d
..
0ab8762
100644
(file)
--- 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;
}
}