wie bekomme ich das Loginmodul (Frontend) dazu, nach einem Logout auf eine bestimmt Seite zu gehen.

Code: Alles auswählen
$tpl->set('s', 'FORM_ACTION', 'front_content.php?idcatart=[Deine IDCATART Nummer]');
$tpl->set('s', 'USERNAME', mi18n("Username"));
$tpl->set('s', 'PASSWORD', mi18n("Passwort"));
$tpl->set('s', 'GO', mi18n("Go"));
$tpl->set('s', 'LOGIN', mi18n("Login"));
} else {
$template = 'logout.html';
$tpl->set('s', 'CURRENT_USERNAME', mi18n("Du bist angemeldet als"));
$tpl->set('s', 'USERNAME', $auth->auth["uname"]);
$tpl->set('s', 'HREF', 'front_content.php?idcatart='.$idcatart.'&logout=yes');
$tpl->set('s', 'LOGOUT', mi18n("Logout"));
}
$tpl->generate('templates/'.$template);
?>
Code: Alles auswählen
'front_content.php?idcatart='.$idcatart.'&logout=yes'