moved erro page from unit_test to gallery_unit_test

This commit is contained in:
Felix Rabinovich
2008-12-08 08:24:01 +00:00
parent b878ed174d
commit 0a0852328a

View File

@@ -1,13 +0,0 @@
<?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>/', '/<(.*?)>/', '/&gt;/'), array("\t", '', '>'), $trace);
echo Kohana::lang('core.stack_trace') . "\n";
echo $trace . "\n";
}