Changeset 2548 for trunk/system/views/kohana_error_page.php
- Timestamp:
- 04/21/2008 01:47:53 PM (7 months ago)
- Files:
-
- 1 modified
-
trunk/system/views/kohana_error_page.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/system/views/kohana_error_page.php
r2251 r2548 11 11 </style> 12 12 <div id="framework_error" style="width:42em;margin:20px auto;"> 13 <h3><?php echo $error?></h3>14 <p><?php echo $description?></p>13 <h3><?php echo html::specialchars($error) ?></h3> 14 <p><?php echo html::specialchars($description) ?></p> 15 15 <?php if ( ! empty($line) AND ! empty($file)): ?> 16 16 <p><?php echo Kohana::lang('core.error_file_line', $file, $line) ?></p> 17 17 <?php endif ?> 18 <p><code class="block"><?php echo $message?></code></p>18 <p><code class="block"><?php echo html::specialchars($message) ?></code></p> 19 19 <?php if ( ! empty($trace)): ?> 20 20 <h3><?php echo Kohana::lang('core.stack_trace') ?></h3>
