When I set :html in a CDetailView I get this error, is it a bug or am i missing a file in the framework (1.1.3) ?
<?php
$this->widget('zii.widgets.CDetailView', array(
'data'=>$model,
'attributes'=>array(
'id',
'name',
'description:html',
array(
'label' => 'Books',
'value' => $books_value,
),
'price',
'created',
'modified',
),
)); ?>