Please Fix The Following Errors

Hi , Im New to Yii.

I wanted to know how to replace instead of "Please Fix The Following Input Errors :"

Username cannot be blank.

Email cannot be blank.

Password cannot be blank.

Password Repeat cannot be blank

to just output numbers of errors.

thx.

replace this line in _form.php


echo $form->errorSummary($model);

with this one


echo 'there are '.count($model->getErrors).' errors';