We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c662d8 commit 8cd358aCopy full SHA for 8cd358a
src/Mouf/Mvc/Splash/Utils/ExceptionUtils.php
@@ -21,7 +21,7 @@ private static function getHTMLBackTrace($backtrace)
21
$str .= ((isset($step['class'])) ? htmlspecialchars($step['class'], ENT_NOQUOTES, 'UTF-8') : '').
22
((isset($step['type'])) ? htmlspecialchars($step['type'], ENT_NOQUOTES, 'UTF-8') : '').htmlspecialchars($step['function'], ENT_NOQUOTES, 'UTF-8').'(';
23
24
- if (is_array($step['args'])) {
+ if (array_key_exists('args', $step) && is_array($step['args'])) {
25
$drawn = false;
26
$params = '';
27
foreach ($step['args'] as $param) {
0 commit comments