Skip to content

Commit

Permalink
fix #1901 【メールフォーム】バリデーションエラー時にチェックボックスのチェックが外れる #1901 (#2798)
Browse files Browse the repository at this point in the history
Co-authored-by: Đỗ Văn Hùng <[email protected]>
  • Loading branch information
HungDV2022 and dovanhung authored Oct 20, 2023
1 parent 46b9478 commit f631c27
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion plugins/bc-mail/src/Service/Front/MailFrontService.php
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,11 @@ public function confirm(EntityInterface $mailContent, array $postData): EntityIn
// フォームの初期化でエラーとなってしまう。そのため、source オプションで明示的にテーブルを指定する
return new MailMessage($message->toArray(), ['source' => 'BcMail.MailMessages']);
} else {
throw new PersistenceFailedException($message, __d('baser_core', 'エラー : 入力内容を確認して再度送信してください。'));
// 2023/10/16 by HungDV
// newEntity() だと配列が消えてしまうため、エンティティクラスで直接変換
$mailMessage = new MailMessage($postData, ['source' => 'BcMail.MailMessages']);
$mailMessage->setErrors($message->getErrors());
throw new PersistenceFailedException($mailMessage, __d('baser_core', 'エラー : 入力内容を確認して再度送信してください。'));
}
}

Expand Down

0 comments on commit f631c27

Please sign in to comment.