You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In framework::instance(), there is a line that does $export = !(isset($CFG->mod_hvp_export) && $CFG->mod_hvp_export === '0');
Since $CFG->mod_hvp_export is not documented anywhere, I was wondering if this is meant to be a check on get_config('mod_hvp', 'export') (mod_hvp/export in settings.php), rather than a separate setting that has to be defined manually in config.php?
The text was updated successfully, but these errors were encountered:
In
framework::instance()
, there is a line that does$export = !(isset($CFG->mod_hvp_export) && $CFG->mod_hvp_export === '0');
Since
$CFG->mod_hvp_export
is not documented anywhere, I was wondering if this is meant to be a check onget_config('mod_hvp', 'export')
(mod_hvp/export
in settings.php), rather than a separate setting that has to be defined manually in config.php?The text was updated successfully, but these errors were encountered: