1
0
Ответвление 0

Add a notice if the module cron is disabled

Этот коммит содержится в:
Chl 2021-12-04 02:37:38 +01:00
родитель 224e82f9fa
коммит 904554a0e1
3 изменённых файлов: 7 добавлений и 0 удалений

Просмотреть файл

@ -166,6 +166,11 @@ else
{
print '<br>'.$langs->trans("NothingToSetup");
}
// Display a notice if the 'cron' module is not enabled
if (! in_array('cron', $conf->modules, true)) {
print '<div class="info"><p>' . $langs->trans('NoticeCronIsDisabled') . "</p></div>\n";
}
}