10 lines
220 B
PHP
10 lines
220 B
PHP
<?php
|
|
$this->breadcrumbs=array(
|
|
'Comments'=>array('index'),
|
|
'Update Comment #'.$model->id,
|
|
);
|
|
?>
|
|
|
|
<h1>Update Comment #<?php echo $model->id; ?></h1>
|
|
|
|
<?php echo $this->renderPartial('_form', array('model'=>$model)); ?>
|