Skip to content
Snippets Groups Projects
Unverified Commit dd3d5829 authored by Joas Schilling's avatar Joas Schilling
Browse files

This is not javascript

parent 46e3ea4e
No related branches found
No related tags found
No related merge requests found
......@@ -106,7 +106,7 @@ trait CommandLine {
$results = [];
// the exception text usually appears after an "[Exception"] row
foreach (explode("\n", $input) as $line) {
if (strpos($line, $text) >= 0) {
if (strpos($line, $text) !== false) {
$results[] = $line;
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment