fixed page reload after logout

This commit is contained in:
Kamil Domanski 2011-06-20 21:09:34 +02:00
Родитель 557b5b4b47
Коммит 0603391405
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -47,7 +47,7 @@ elseif($not_installed OR $install_called) {
elseif(OC_USER::isLoggedIn()) {
if(isset($_GET["logout"]) and ($_GET["logout"])) {
OC_USER::logout();
header("Location: $WEBROOT");
header("Location: ".$WEBROOT.'/');
exit();
}
else {

Просмотреть файл

@ -23,7 +23,7 @@ if(isset($_POST['install']) AND $_POST['install']=='true') {
OC_TEMPLATE::printGuestPage("", "installation", $options);
}
else {
header("Location: $WEBROOT$SUBURI");
header("Location: ".$WEBROOT.'/');
exit();
}
}