Skip to content

Commit 7bc7f53

Browse files
OXDEV-9216 Fix errors in backend forms
1 parent 19ea99a commit 7bc7f53

2 files changed

Lines changed: 7 additions & 0 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1414

1515
### Fixed
1616
- Password validators are no longer used when password policy is disabled
17+
- Error in shop core settings forms
1718

1819
## [1.0.0] - 2024-11-27
1920
This is the stable release of v1.0.0. No changes have been made since v1.0.0-rc.1.

src/Captcha/Form/ContactFormDecorator.php

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
use OxidEsales\EshopCommunity\Internal\Domain\Contact\Form\ContactFormBridgeInterface;
1313
use OxidEsales\EshopCommunity\Internal\Framework\Form\Form;
1414
use OxidEsales\EshopCommunity\Internal\Framework\Form\FormInterface;
15+
use OxidEsales\EshopCommunity\Internal\Framework\FormConfiguration\FormConfigurationInterface;
1516

1617
class ContactFormDecorator
1718
{
@@ -37,4 +38,9 @@ public function getContactFormMessage(): string
3738

3839
return $this->contactFormBridge->getContactFormMessage($contactForm);
3940
}
41+
42+
public function getContactFormConfiguration(): FormConfigurationInterface
43+
{
44+
return $this->contactFormBridge->getContactFormConfiguration();
45+
}
4046
}

0 commit comments

Comments
 (0)