yii-user-management
yii-user-management copied to clipboard
Undefined variable: form on modules/profile/views/profile/_form.php
Undefined variable: form requesting /user/user/create
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)); ?>
Make a pull pls.