public function actionChangeAuthors()
 {
     $field = CCoreObjectsManager::getCoreModelField(CRequest::getInt("id"));
     $field->is_authors = 1 - $field->is_authors;
     $field->save();
     echo $field->is_authors;
 }