setup: Skip browser validation when validating a form manually

fixes #4291
This commit is contained in:
Johannes Meyer 2021-04-13 16:07:06 +02:00
parent a4d495e17c
commit 1a5cedfee1
2 changed files with 6 additions and 3 deletions

View File

@ -120,7 +120,8 @@ class MonitoringWizard extends Wizard implements SetupWizard
'ignore' => true,
'label' => t('Validate Configuration'),
'data-progress-label' => t('Validation In Progress'),
'decorators' => array('ViewHelper')
'decorators' => array('ViewHelper'),
'formnovalidate' => 'formnovalidate'
)
);
$page->getDisplayGroup('buttons')->addElement($page->getElement('backend_validation'));

View File

@ -374,7 +374,8 @@ class WebWizard extends Wizard implements SetupWizard
'ignore' => true,
'label' => t('Validate Configuration'),
'data-progress-label' => t('Validation In Progress'),
'decorators' => array('ViewHelper')
'decorators' => array('ViewHelper'),
'formnovalidate' => 'formnovalidate'
)
);
$page->getDisplayGroup('buttons')->addElement($page->getElement('backend_validation'));
@ -389,7 +390,8 @@ class WebWizard extends Wizard implements SetupWizard
'ignore' => true,
'label' => t('Validate Configuration'),
'data-progress-label' => t('Validation In Progress'),
'decorators' => array('ViewHelper')
'decorators' => array('ViewHelper'),
'formnovalidate' => 'formnovalidate'
)
);
$page->getDisplayGroup('buttons')->addElement($page->getElement('transport_validation'));