Merge branch 'master' of git://anongit.kde.org/owncloud

This commit is contained in:
Jakob Sack 2011-06-20 22:09:21 +02:00
commit 3e74cca739
2 changed files with 2 additions and 2 deletions

View File

@ -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 {

View File

@ -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();
}
}