File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed
Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 1+ ## 3.0.3 - 2019-11-25
2+ ### Fixed
3+ - Fix error when first file is not ` *.log ` (via [ @sebschaefer ] ( https://github.com/sebschaefer ) )
4+
15## 3.0.2 - 2019-10-24
26### Fixed
37- Fix issue with missing log variable in compact() call (via [ @jeffturcotte ] ( https://github.com/jeffturcotte ) )
711- Fix security issue allowing a user to view any file on the system #2
812
913## 3.0.0 - 2017-12-01
10- Initial Release
14+ Initial Release
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ public static function contentHtml (): string
3434 $ logFiles = array_values (array_filter (
3535 scandir ($ logsDir ),
3636 function ($ var ) {
37- return $ var [0 ] != '. ' ;
37+ return $ var [0 ] != '. ' && strpos ( $ var , ' .log ' ) ;
3838 }
3939 ));
4040
You can’t perform that action at this time.
0 commit comments