We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug Agent crashes application when handling errors.
To Reproduce call following script:
<?php $filename = __DIR__."/highlight_file.dat"; var_dump(highlight_file($filename)); var_dump(highlight_file('data:,<?php echo "test"; ?>')); var_dump(highlight_file('data:,<?php echo "test ?>')); $data = ' <?php class test { public $var = 1; private function foo() { echo "foo"; } public function bar() { var_dump(test::foo()); } } ?>'; file_put_contents($filename, $data); var_dump(highlight_file($filename)); @unlink($filename); echo "Done\n"; ?>
Expected behavior Run without crash
The text was updated successfully, but these errors were encountered:
Fixed exception handling (elastic#1077)
ae49761
Fixed exception handling (#1077) (#1078)
f874c1f
intuibase
Successfully merging a pull request may close this issue.
Describe the bug
Agent crashes application when handling errors.
To Reproduce
call following script:
Expected behavior
Run without crash
The text was updated successfully, but these errors were encountered: