|
|||
|
Hi wissende,
vielleicht gabs die frage schon mal, allerdings hab ich mittels suche nix gefunden. Wenn doch bitte link posten. Frage: wenn ein Kunde sich neu registriert, wird direkt der Warenkorb ge?ffnet. 1. Ist das richtig? 2. Sollte da nicht irgend ne Seite kommen in der drin steht das die Registration erfolgreich war? gr?ssle spacecube |
|
|||
|
create_account.php Zeile 320:
Code:
if (!isset($mail_error)) {
xtc_redirect(xtc_href_link(FILENAME_SHOPPING_CART, '', 'SSL'));
}
else {
echo $mail_error;
}
}
}
Code:
if (!isset($mail_error)) {
if (sizeof($_SESSION['navigation']->snapshot) > 0) {
$origin_href = xtc_href_link($_SESSION['navigation']->snapshot['page'], xtc_array_to_string($_SESSION['navigation']->snapshot['get'], array(xtc_session_name())), $_SESSION['navigation']->snapshot['mode']);
$_SESSION['navigation']->clear_snapshot();
xtc_redirect($origin_href);
}
else
{
xtc_redirect(xtc_href_link(FILENAME_DEFAULT));
}
}
else {
echo $mail_error;
}
}
}
MfG Ren |
![]() |
| Lesezeichen |
| Stichworte |
| anmeldung, kunde |
| Themen-Optionen | |
| Ansicht | |
|
|