Hi,
Am trying to update one field in my article controller with this code:
$this->updateByPk($id, array('title'=>'TEST'));
The error:
ArticleController and its behaviors do not have a method or closure named "updateByPk". (/Applications/MNPP/htdocs/yii/framework/base/CComponent.php:265)
Also tried with:
$this::model()->updateByPk($id, array('title'=>'TEST'));
$this::updateByPk($id, array('title'=>'TEST'));
am using latest model
Thanks