Changeset 2251 for trunk/system/views

Show
Ignore:
Timestamp:
03/09/2008 03:26:24 PM (9 months ago)
Author:
Shadowhand
Message:

Follow up to r2249:

  • Moved KOHANA_ERROR_CSS to system/views/kohana_errors.css
  • Updated kohana_error_disabled and kohana_error_page to match
Location:
trunk/system/views
Files:
1 added
2 modified

Legend:

Unmodified
Added
Removed
  • trunk/system/views/kohana_error_disabled.php

    r2249 r2251  
    77<body> 
    88<style type="text/css"> 
    9 <?php echo KOHANA_ERROR_CSS ?> 
     9<?php include Kohana::find_file('views', 'kohana_errors', FALSE, 'css') ?> 
    1010</style> 
    11 <div id="kohana_error" style="width:24em;margin:50px auto;"> 
     11<div id="framework_error" style="width:24em;margin:50px auto;"> 
    1212<h3><?php echo $error ?></h3> 
    1313<p><?php echo $message ?></p> 
  • trunk/system/views/kohana_error_page.php

    r2249 r2251  
    88<body> 
    99<style type="text/css"> 
    10 <?php echo KOHANA_ERROR_CSS ?> 
     10<?php include Kohana::find_file('views', 'kohana_errors', FALSE, 'css') ?> 
    1111</style> 
    12 <div id="kohana_error" style="width:42em;margin:20px auto;"> 
     12<div id="framework_error" style="width:42em;margin:20px auto;"> 
    1313<h3><?php echo $error ?></h3> 
    1414<p><?php echo $description ?></p>