mirror of
https://github.com/Pathduck/gallery3.git
synced 2026-05-21 03:49:21 -04:00
14 lines
393 B
PHP
14 lines
393 B
PHP
<?php
|
|
echo html::specialchars($error) . "\n";
|
|
echo html::specialchars($description) . "\n";
|
|
if ( ! empty($line) AND ! empty($file)) {
|
|
echo $file . "[" . $line . "]:" . "\n";
|
|
}
|
|
echo $message . "\n";
|
|
if ( ! empty($trace)) {
|
|
$trace = preg_replace(array('/<li>/', '/<(.*?)>/', '/>/'), array("\t", '', '>'), $trace);
|
|
echo Kohana::lang('core.stack_trace') . "\n";
|
|
echo $trace . "\n";
|
|
}
|
|
|