Comparing
#6 with
#7
Revision #7 was created by
meanpenguin on Feb 11, 2009, 4:45:35 AM.
Incorporate fix per comment by horizons
Content
[...]
```php
[<?php echo CHtml::link('New User',array('user/create')); ?>]
[<?php echo CHtml::link('Manage User',array('user/admin')); ?>]
```
(thanks to horizons) edit line 13 to
```php
<?php echo CHtml::link($model->id,array('user/show','id'=>$model->id)); ?>
```