diff options
author | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2011-04-17 10:42:35 +0200 |
---|---|---|
committer | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2011-04-17 10:42:35 +0200 |
commit | 28199a4052988ca38369f18c20d61c832077550a (patch) | |
tree | 0228902cae6e1dae3ce1261498258dab3999182a /files/index.php | |
parent | 8a5d1ffebe8eb077b43df042314013143698b499 (diff) | |
download | nextcloud-server-28199a4052988ca38369f18c20d61c832077550a.tar.gz nextcloud-server-28199a4052988ca38369f18c20d61c832077550a.zip |
fix missing parameter in function call
Diffstat (limited to 'files/index.php')
-rw-r--r-- | files/index.php | 2 |
1 files changed, 1 insertions, 1 deletions
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(); } |