Details
-
Bug
-
Status: Closed
-
Minor
-
Resolution: Fixed
-
3.3, 3.3 regressions, 3.4
-
MOODLE_33_STABLE, MOODLE_34_STABLE
-
MOODLE_33_STABLE
-
MDL-59096-master -
Description
When trying to run the scheduled task of a local plugin through the web runner. The running is prevented because of this code:
$component = $task->get_component();
|
if ($plugininfo = core_plugin_manager::instance()->get_plugin_info($component)) {
|
if (!$plugininfo->is_enabled() && !$task->get_run_if_component_disabled()) {
|
echo "Component is not enabled ($component).\n";
|
return false;
|
}
|
}
|
But local plugins can't be enabled, so its not possible to ever run
Attachments
Issue Links
- Discovered while testing
-
MDLSITE-4993 Dev chat logs not updating
-
- Resolved
-
- is a regression caused by
-
MDL-55980 Run individual scheduled tasks from web
-
- Closed
-