During update in admin, is missing a error message when username or email already exists.
to resolve it you must add:
if (Yii::$app->request->isAjax) {
Yii::$app->response->format = Response::FORMAT_JSON;
return ActiveForm::validate($user, $profile);
}
in function actionUpdate, file AdminController.php.
During update in admin, is missing a error message when username or email already exists. to resolve it you must add: if (Yii::$app->request->isAjax) { Yii::$app->response->format = Response::FORMAT_JSON; return ActiveForm::validate($user, $profile); } in function actionUpdate, file AdminController.php.
Very good extension. Thanks, David