1 <?php
defined('SYSPATH') OR die('No direct access allowed.'); ?
>
2 <!DOCTYPE html
PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3 <html xmlns
="http://www.w3.org/1999/xhtml" xml
:lang
="en" lang
="en">
5 <meta http
-equiv
="Content-Type" content
="text/html; charset=utf-8"/>
6 <title
><?php
echo $error ?
></title
>
7 <base href
="http://php.net/" />
10 <style type
="text/css">
11 <?php
include Kohana
::find_file('views', 'kohana_errors', FALSE, 'css') ?
>
13 <div id
="framework_error" style
="width:42em;margin:20px auto;">
14 <h3
><?php
echo html
::specialchars($error) ?
></h3
>
15 <p
><?php
echo html
::specialchars($description) ?
></p
>
16 <?php
if ( ! empty($line) AND ! empty($file)): ?
>
17 <p
><?php
echo Kohana
::lang('core.error_file_line', $file, $line) ?
></p
>
19 <p
><code
class="block"><?php
echo $message ?
></code
></p
>
20 <?php
if ( ! empty($trace)): ?
>
21 <h3
><?php
echo Kohana
::lang('core.stack_trace') ?
></h3
>
24 <p
class="stats"><?php
echo Kohana
::lang('core.stats_footer') ?
></p
>