How to reproduce shown in the screenshot in the attachment (https://github.com/fusioninventory/fusio...ssues/3020)
How to fix:
in file inc/taskjobstate.class.php line 752-758
for example it should be like this:
How to fix:
in file inc/taskjobstate.class.php line 752-758
Code:
$stateColors = [
PluginFusioninventoryTaskjoblog::TASK_PREPARED => '#efefef',
PluginFusioninventoryTaskjoblog::TASK_RUNNING => '#aaaaff',
PluginFusioninventoryTaskjoblog::TASK_STARTED => '#aaaaff',
PluginFusioninventoryTaskjoblog::TASK_OK => '#aaffaa',
PluginFusioninventoryTaskjoblog::TASK_ERROR => '#ff0000',
];
for example it should be like this:
Code:
$stateColors = [
PluginFusioninventoryTaskjoblog::TASK_PREPARED => '#efefef',
PluginFusioninventoryTaskjoblog::TASK_RUNNING => '#aaaaff',
PluginFusioninventoryTaskjoblog::TASK_STARTED => '#aaaaff',
PluginFusioninventoryTaskjoblog::TASK_OK => '#aaffaa',
PluginFusioninventoryTaskjoblog::TASK_ERROR => '#ff0000',
PluginFusioninventoryTaskjoblog::TASK_INFO => '#8CABDB',
];