Yii-user: Use field default as selected option at registration

Needed a selected default option in my dropdowns at registration. Should be added to the core.

Line 65, views/user/registration.php:

echo $form->dropDownList($profile,$field->varname,Profile::range($field->range));

Change to:

echo $form->dropDownList($profile,$field->varname,Profile::range($field->range),array(‘options’=>array($field->default=>array(‘selected’=>‘selected’))));

Hope this helps somebody, I looked all over and didn’t find anything on this topic.