21 lines
392 B
PHP
21 lines
392 B
PHP
<?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>
|