thyseus / yii-user-management

a user management module collection for the yii framework
186 stars 122 forks source link

Undefined variable: form on modules/profile/views/profile/_form.php #174

Open platix opened 10 years ago

platix commented 10 years ago

Undefined variable: form requesting /user/user/create

platix commented 10 years ago

Fixed adding the variable form to user/views/user/_form.php at line 79 from this: $this->renderPartial(Yum::module('profile')->profileFormView, array( 'profile' => $profile)); ?> to this: $this->renderPartial(Yum::module('profile')->profileFormView, array( 'profile' => $profile, 'form'=>$form)); ?>

arturparkhisenko commented 10 years ago

Make a pull pls.