Skip to content

Commit

Permalink
Fix PHP Warning: Undefined array key 0 in C:\Users\flo\git\joomla-cms…
Browse files Browse the repository at this point in the history
…-40-dev\plugins\system\debug\src\DataFormatter.php on line 79 #36716
  • Loading branch information
beat committed Jan 17, 2022
1 parent b84fc74 commit 37d8b18
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/system/debug/src/DataFormatter.php
Expand Up @@ -74,7 +74,7 @@ public function formatCallerInfo(array $call): string

$string = rtrim($string, ', ') . ')';
}
elseif (isset($call['args']))
elseif (isset($call['args'][0]))
{
$string .= htmlspecialchars($call['function']) . ' ' . $call['args'][0];
}
Expand Down

0 comments on commit 37d8b18

Please sign in to comment.