# ошибкаFatal error: Call to a member function getErrors() on a non-object in Y:\home\framework\web\helpers\CHtml.php on line 1592# protected/models/RequestForm.php<?phpclass RequestForm extends CFormModel { public $organization; public $name; public $email; public $telefon; public $text; public function rules() { return array( array('name, telefon, text', 'required'), ); } public function attributeLabels() { return array( 'organization'=>'Организация' 'name'=>'Контактное лицо', 'email'=>'Email', 'telefon'=>'Телефон', 'text'=>'Текст заявки', ); }}