Details
-
Type:
Bug
-
Status:
Closed
-
Priority:
Minor
-
Resolution: Fixed
-
Affects Version/s: 1.8.4
-
Component/s: Course
-
Labels:None
-
Environment:Debian Linux 4.0, PHP Version 4.4.4-8, Apache 1.3.34
-
Affected Branches:MOODLE_18_STABLE
-
Fixed Branches:MOODLE_18_STABLE, MOODLE_19_STABLE, MOODLE_20_STABLE
Description
"enrol_ldap_autocreate" create courses, even if "enrol_ldap_autocreate" is set to "no"
so i have done the following changes on enrol/ldap/enrol.php:
from:
if (!is_object($course_obj){
// ok, now then let's create it! print "Creating Course $idnumber...";
to:
if (!is_object($course_obj) && $CFG->enrol_ldap_autocreate) {
// ok, now then let's create it! print "Creating Course $idnumber...";
it's this right? is this a bug?
Regards
Bruno
I agree. This is an obvious bug with a clear fix.