Skip to content

Commit

Permalink
Merge pull request #6031 from dotani1111/features/fix_install_databas…
Browse files Browse the repository at this point in the history
…e_password_form

fix:インストール時のDBパスワード入力フォームからpurifyを外す
  • Loading branch information
ji-eunsoo committed Jan 24, 2024
2 parents 503055e + 0ef1706 commit 134f506
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/Eccube/Form/Type/Install/Step4Type.php
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@ public function buildForm(FormBuilderInterface $builder, array $options)
->add('database_password', PasswordType::class, [
'label' => trans('install.database_password'),
'required' => false,
'purify_html' => false,
])
->addEventListener(FormEvents::POST_SUBMIT, function ($event) {
$form = $event->getForm();
Expand Down

0 comments on commit 134f506

Please sign in to comment.