- add slash if webroot is an empty string

- added comment
このコミットが含まれているのは:
Florian Scholz 2013-06-25 10:45:37 +02:00
コミット b1fd9b3907

ファイルの表示

@ -641,7 +641,8 @@ class OC {
OC_Preferences::deleteKey(OC_User::getUser(), 'login_token', $_COOKIE['oc_token']);
}
OC_User::logout();
header("Location: " . OC::$WEBROOT);
// redirect to webroot and add slash if webroot is empty
header("Location: " . OC::$WEBROOT.(empty(OC::$WEBROOT) ? '/' : ''));
} else {
if (is_null($file)) {
$param['file'] = 'index.php';