21 lines
392 B
Plaintext
21 lines
392 B
Plaintext
|
<?php
|
||
|
/*
|
||
|
*
|
||
|
*/
|
||
|
?>
|
||
|
<div class="alert alert-danger">
|
||
|
<button type="button" class="close" data-dismiss="alert">×</button>
|
||
|
<strong><?php echo __d('cake', 'Error'); ?></strong>
|
||
|
<?php echo __d('cake', 'An Internal Error Has Occurred.'); ?>
|
||
|
</div>
|
||
|
<div class="box">
|
||
|
<?php
|
||
|
|
||
|
if (Configure::read('debug') > 0):
|
||
|
echo $this->element('exception_stack_trace');
|
||
|
endif;
|
||
|
echo $name;
|
||
|
|
||
|
?>
|
||
|
</div>
|