Skip to content

Commit

Permalink
OXDEV-7847 Set the default value of blSkipDebitOldBankInfo to true
Browse files Browse the repository at this point in the history
  • Loading branch information
RahatHameed authored and NikolaIvanovski committed Nov 12, 2024
1 parent 5f6b30c commit 78f853b
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG-7.3.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,7 @@
- Shop ID resolution considers SSL language URLs

### Removed
- PHPUnit v10 support
- PHPUnit v10 support

### Changed
- Set the default value of blSkipDebitOldBankInfo to true
3 changes: 2 additions & 1 deletion source/Internal/Setup/Database/Sql/initial_data.sql
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,8 @@ INSERT INTO `oxconfig` (`OXID`, `OXSHOPID`, `OXMODULE`, `OXVARNAME`, `OXVARTYPE`
('mla50c74dd79703312ffb8cfd82c3741', 1, '', 'aLanguageURLs', 'arr', 'a:2:{i:0;s:0:\"\";i:1;N;}'),
('mlabefd7ebdb5946e8f3f7e7a953b323', 1, '', 'aLanguageSSLURLs', 'arr', 'a:2:{i:0;s:0:\"\";i:1;N;}'),
('mlae44cdad808d9b994c58540db39e7a', 1, '', 'aLanguages', 'aarr', 'a:2:{s:2:\"de\";s:7:\"Deutsch\";s:2:\"en\";s:7:\"English\";}'),
('omc4555952125c3c2.98253113', 1, '', 'blDisableNavBars', 'bool', '1');
('omc4555952125c3c2.98253113', 1, '', 'blDisableNavBars', 'bool', '1'),
('feb42aecdf7bacc7c76c9d36102da622', 1, '', 'blSkipDebitOldBankInfo', 'bool', '1');

INSERT INTO `oxcontents` (`OXID`, `OXLOADID`, `OXSHOPID`, `OXSNIPPET`, `OXTYPE`, `OXACTIVE`, `OXACTIVE_1`, `OXPOSITION`, `OXTITLE`, `OXCONTENT`, `OXTITLE_1`, `OXCONTENT_1`, `OXACTIVE_2`, `OXTITLE_2`, `OXCONTENT_2`, `OXACTIVE_3`, `OXTITLE_3`, `OXCONTENT_3`, `OXCATID`, `OXFOLDER`, `OXTERMVERSION`) VALUES
('8709e45f31a86909e9f999222e80b1d0', 'oxstdfooter', 1, 1, 0, 1, 1, '', 'Standard Footer', '<div>OXID Online Shop - Alles rund um das Thema Wassersport, Sportbekleidung und Mode </div>', 'standard footer', '<div>OXID Online Shop - All about watersports, sportswear and fashion </div>', 1, '', '', 1, '', '', '30e44ab83fdee7564.23264141', '', ''),
Expand Down
4 changes: 2 additions & 2 deletions tests/Integration/Legacy/Core/InputValidatorTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ public function testValidatePaymentInputDataWithCorrectBankCode(): void
{
$testValues = [
'lsbankname' => 'Bank name',
'lsblz' => '12345678',
'lsktonr' => '123456',
'lsblz' => 'DEDEDEFF',
'lsktonr' => 'DE55200800000770876200',
'lsktoinhaber' => 'Hans Mustermann',
];

Expand Down

0 comments on commit 78f853b

Please sign in to comment.