dreamjob/app/View/Errors/error500.ctp

21 lines
392 B
Plaintext
Raw Normal View History

2014-02-18 12:10:29 +01:00
<?php
/*
*
*/
?>
<div class="alert alert-danger">
<button type="button" class="close" data-dismiss="alert">&times;</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>