htdocs/modules/debugbar/class/debugbarlogger.php 1 location
|
@@ 433-437 (lines=5) @@
|
430 |
|
|
431 |
|
$pattern = '<!--{xo-logger-output}-->'; |
432 |
|
$pos = strpos($output, $pattern); |
433 |
|
if ($pos !== false) { |
434 |
|
return substr($output, 0, $pos) . $log . substr($output, $pos + strlen($pattern)); |
435 |
|
} else { |
436 |
|
return $output . $log; |
437 |
|
} |
438 |
|
} |
439 |
|
|
440 |
|
/** |
htdocs/modules/logger/class/legacylogger.php 1 location
|
@@ 364-368 (lines=5) @@
|
361 |
|
|
362 |
|
$pattern = '<!--{xo-logger-output}-->'; |
363 |
|
$pos = strpos($output, $pattern); |
364 |
|
if ($pos !== false) { |
365 |
|
return substr($output, 0, $pos) . $log . substr($output, $pos + strlen($pattern)); |
366 |
|
} else { |
367 |
|
return $output . $log; |
368 |
|
} |
369 |
|
} |
370 |
|
|
371 |
|
/** |