From: Arthur Schiwon Date: Sun, 17 Apr 2011 08:42:35 +0000 (+0200) Subject: fix missing parameter in function call X-Git-Tag: v3.0~267^2~558^2~105 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=28199a4052988ca38369f18c20d61c832077550a;p=nextcloud-server.git fix missing parameter in function call --- diff --git a/files/index.php b/files/index.php index 7f6a11ff03c..638f5d0c51e 100644 --- a/files/index.php +++ b/files/index.php @@ -28,7 +28,7 @@ require( 'template.php' ); // Check if we are a user if( !OC_USER::isLoggedIn()){ - header( "Location: ".OC_HELPER::linkTo( "index.php" )); + header( "Location: ".OC_HELPER::linkTo( '', 'index.php' )); exit(); }