1
0
www.mikescher.com/www/protected/views/msmain/error.php

16 lines
279 B
PHP
Raw Normal View History

2014-05-13 12:40:42 +02:00
<?php
2014-06-06 19:31:05 +02:00
/* @var $this MsMainController */
2014-05-13 12:40:42 +02:00
/* @var $error array */
2014-06-10 13:27:17 +02:00
$this->pageTitle='Error - ' . Yii::app()->name;
2014-05-13 18:25:37 +02:00
$this->breadcrumbs=array(
'Error',
);
2014-05-13 12:40:42 +02:00
2014-05-13 18:25:37 +02:00
$this->widget('bootstrap.widgets.TbHeroUnit', array(
'heading' => 'ERROR ' . $code,
'content' => $message,
));
?>