Skip to content
Snippets Groups Projects
Commit 923c342d authored by Hahn Axel (hahn)'s avatar Hahn Axel (hahn)
Browse files

Merge branch 'add-running-jobs' into 'master'

no color in rc column for running jobs

See merge request !15
parents 4013ebc0 e03ce0ae
No related branches found
No related tags found
1 merge request!15no color in rc column for running jobs
...@@ -223,7 +223,7 @@ class cronlogrenderer extends cronlog{ ...@@ -223,7 +223,7 @@ class cronlogrenderer extends cronlog{
.$aEntry['SCRIPTTTL'] .$aEntry['SCRIPTTTL']
.$sTtlHr .$sTtlHr
.'</td>' .'</td>'
. '<td class="'.($aEntry['SCRIPTRC']>0 ? 'message-error' : 'message-ok' ).'">' . '<td class="'.($aEntry['SCRIPTRC'] ? ($aEntry['SCRIPTRC']>0 ? 'message-error' : 'message-ok') : '' ).'">'
.($aEntry['SCRIPTRC'] ? $aEntry['SCRIPTRC'] : '⏳') .($aEntry['SCRIPTRC'] ? $aEntry['SCRIPTRC'] : '⏳')
.'</td>' .'</td>'
. '<td class="'.($iNextRunWarn < date("U") . '<td class="'.($iNextRunWarn < date("U")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment