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 42d8818 commit 061c14cCopy full SHA for 061c14c
lib/internal/Magento/Framework/Profiler/Driver/Standard/Stat.php
@@ -210,6 +210,9 @@ protected function _getOrderedTimerIds()
210
while (strpos($timerId, $prevTimerId . Profiler::NESTING_SEPARATOR) !== 0) {
211
/* Add to result all timers nested in the previous timer */
212
for ($j = $i + 1; $j < count($timerIds); $j++) {
213
+ if (!$timerIds[$j]) {
214
+ continue;
215
+ }
216
if (strpos($timerIds[$j], $prevTimerId . Profiler::NESTING_SEPARATOR) === 0) {
217
$result[] = $timerIds[$j];
218
/* Mark timer as already added */
0 commit comments