All pastes #2070447 Raw Edit

Anonymous

public php v1 · immutable
#2070447 ·published 2011-05-27 15:18 UTC
rendered paste body
# ошибка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'=>'Текст заявки',        );    }}