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

fix flag to use skip entires

parent 67e8a82f
Branches
Tags
No related merge requests found
...@@ -238,7 +238,7 @@ class cronlog { ...@@ -238,7 +238,7 @@ class cronlog {
while (($line = fgets($fileHandle)) !== false) { while (($line = fgets($fileHandle)) !== false) {
// send the current file part to the browser // send the current file part to the browser
$aData=$this->_parseJoblogLine($line); $aData=$this->_parseJoblogLine($line);
if(!$bUseSkip && array_search($aData['job'], $this->_aSkipJoblogs)===false){ if($bUseSkip && array_search($aData['job'], $this->_aSkipJoblogs)===false){
$aReturn[$aData['start']]=$aData; $aReturn[$aData['start']]=$aData;
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment