- 6. September 2012
- 3.716
- 355
Wenn ein Kunde bereits per Lastschrift bezahlt hat, stehen bei einem erneuten Bestellvorgang mit Lastschrift als Zahlungsart sämtliche Kontoinformationen vorausgewählt zur Verfügung, mit Ausnahme der BIC und IBAN.
Fehlerhafte Datei: bestellvorgang_inc.php
müsste lauten:
Fehlerhafte Datei: bestellvorgang_inc.php
Code:
if (strlen($oKundenKontodaten->cIBAN) > 0)
$oKundenKontodaten->cIBAN = intval(entschluesselXTEA($oKundenKontodaten->cIBAN));
if (strlen($oKundenKontodaten->cBIC) > 0)
$oKundenKontodaten->cBIC = intval(entschluesselXTEA($oKundenKontodaten->cBIC));
müsste lauten:
Code:
if (strlen($oKundenKontodaten->cIBAN) > 0)
$oKundenKontodaten->cIBAN = [B][COLOR=#ff0000]trim[/COLOR][/B](entschluesselXTEA($oKundenKontodaten->cIBAN));
if (strlen($oKundenKontodaten->cBIC) > 0)
$oKundenKontodaten->cBIC = [COLOR=#ff0000][B]trim[/B][/COLOR](entschluesselXTEA($oKundenKontodaten->cBIC));