Ich habe mal eine Frage, weil ich leider schlecht dokumentiert habe. Ich habe folgende Zeilen in meiner aktuellen includes\modules\pages\checkout_confirmation\heade r_php.php (V1.5.5e):
ca. Zeile 12
Code:
// This should be first line of the script:
]if ($_SESSION['widerruf_downloads'] == 'notaccepted'){
$messageStack->add('checkout_confirmation', ERROR_DOWNLOADS_REVOCATION_NOT_ACCEPTED, 'error');
}
anstatt
Code:
// This should be first line of the script:
$zco_notifier->notify('NOTIFY_HEADER_START_CHECKOUT_CONFIRMATION');
und in ca. Zeile 55
Code:
if ((DISPLAY_CONDITIONS_ON_CHECKOUT == 'true') && ($_SESSION['widerruf_downloads'] != 'notaccepted')){
if (!isset($_POST['conditions']) || ($_POST['conditions'] != '1')) {
$messageStack->add_session('checkout_payment', ERROR_CONDITIONS_NOT_ACCEPTED, 'error');
}
}
anstatt
Code:
if (DISPLAY_CONDITIONS_ON_CHECKOUT == 'true') {
if (!isset($_POST['conditions']) || ($_POST['conditions'] != '1')) {
$messageStack->add_session('checkout_payment', ERROR_CONDITIONS_NOT_ACCEPTED, 'error');
}
}
Ich habe mir leider nicht notiert, warum das da drinsteht, zumindest sind diese Zeile in der Updateversion von 1.5.5f nicht enthalten. Ich würde gerne wissen, ob da ggf. nur etwas in der V1.5.5f vergessen wurden, denn der Verzicht auf Widerruf bei Downloads macht ja durchaus Sinn.
Ich freue mich über Eure Hinweise, ob die Zeilen wirklich einfach nur fehlen in der V1.5.5f ode ob ich die hinzugefügt habe... Ich danke Euch
LG
Lutz
Lesezeichen