fixed cronstrue converter

This commit is contained in:
HB9HIL
2024-04-26 01:02:55 +02:00
parent 1d3e849839
commit 573017fa02
3 changed files with 4 additions and 4 deletions

View File

@@ -178,7 +178,7 @@ class cron extends CI_Controller {
}
private function cronExpression2html($expression) {
$htmlret = '<code>'.$expression.'</code>';
$htmlret = '<code id="humanreadable_tooltip" data-bs-toggle="tooltip">'.$expression.'</code>';
return $htmlret;
}