-
Sub-task
-
Resolution: Fixed
-
Minor
-
2.2.1
-
None
-
Any
-
-
MOODLE_22_STABLE
-
MOODLE_22_STABLE
In http://tracker.moodle.org/browse/CONTRIB-3340 there is still an error that comes up when sessioncookiepath is not '/'. You wrote in your fix on line 196:
$cookie_path_override = $CFG->$cookie_path_override = '';
|
But there's an $ in front of cookie_path_override! The correct line should be:
$cookie_path_override = $CFG->cookie_path_override = '';
|