소스 검색

Fix breaking when spaces in log name (closes #5)

tags/v0.8.2
itismadness 6 년 전
부모
커밋
b38c25a13d
1개의 변경된 파일8개의 추가작업 그리고 4개의 파일을 삭제
  1. +8
    -4
      src/Logchecker.php

+ 8
- 4
src/Logchecker.php 파일 보기

@@ -439,10 +439,14 @@ class Logchecker {
$GoodString = 'OK';
}

$CommandExists = Util::commandExists($Command);
$Out = shell_exec("{$Command} {$this->LogPath}");
if (Util::strposArray($Out, $BadStrings) !== false || strpos($Out, $GoodString) === false) {
$this->Checksum = false;
if (Util::commandExists($Command)) {
$Out = shell_exec("{$Command} ".escapeshellarg($this->LogPath));
if ($Out == null || Util::strposArray($Out, $BadStrings) !== false || strpos($Out, $GoodString) === false) {
$this->Checksum = false;
}
}
else {
$this->account("Could not find {$Command}, checksum not validated.", false, false, false, true);
}
}



불러오는 중...
취소
저장