Details
Description
All 1.8.7 versions now has group/index.php with the following include:
require_once('HTML/AJAX/JSON.php');
This lead to a php fatal error and group interface no more accessible.
Commenting it out group interfaces is back again
All 1.8.7 versions now has group/index.php with the following include:
require_once('HTML/AJAX/JSON.php');
This lead to a php fatal error and group interface no more accessible.
Commenting it out group interfaces is back again
Shouldn't the include be:
require_once($CFG->libdir.'/json/JSON.php');
Also, on lines 83 and 91 have "json_encode"... I don't see that function in the include (or anywhere in Moodle actually). Is it supposed to be just "encode" (which does exist under the include listed above)?
Thanks