Skip to content

Commit

Permalink
DomainController - domain transfer fixed bulk transfer error saving
Browse files Browse the repository at this point in the history
  • Loading branch information
SilverFire committed Jan 21, 2016
1 parent f7bae23 commit 56d5cf5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/controllers/DomainController.php
Original file line number Diff line number Diff line change
Expand Up @@ -573,7 +573,7 @@ public function actionTransfer()
try {
Domain::perform('CheckTransfer', $model->getAttributes(['domain', 'password']));
} catch (ErrorResponseException $e) {
$model->addError(['password' => $e->getMessage()]);
$model->addError('password', $e->getMessage());
}
}

Expand Down

0 comments on commit 56d5cf5

Please sign in to comment.