diff options
author | Michiel de Jong <michiel@unhosted.org> | 2012-02-25 21:59:58 +0000 |
---|---|---|
committer | Michiel de Jong <michiel@unhosted.org> | 2012-02-25 21:59:58 +0000 |
commit | 820f2f27f6ba0509b43b70eb61204355acfeb30f (patch) | |
tree | d2c504021c3738f593eaae5a1acbd9e056ee1171 /apps/remoteStorage/auth.php | |
parent | a1d03de6662c84944dacc4ff357ddf3e5f53949e (diff) | |
download | nextcloud-server-820f2f27f6ba0509b43b70eb61204355acfeb30f.tar.gz nextcloud-server-820f2f27f6ba0509b43b70eb61204355acfeb30f.zip |
security hardening in remoteStorage app
Diffstat (limited to 'apps/remoteStorage/auth.php')
-rw-r--r-- | apps/remoteStorage/auth.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/remoteStorage/auth.php b/apps/remoteStorage/auth.php index 75e0aac419d..cc40e895e01 100644 --- a/apps/remoteStorage/auth.php +++ b/apps/remoteStorage/auth.php @@ -96,5 +96,6 @@ if(count($pathParts) == 2 && $pathParts[0] == '') { .'<form method="POST"><input name="allow" type="submit" value="Click here"></form>'); } } else { - die('please use auth.php/username?params. '.var_export($pathParts, true)); + //die('please use auth.php/username?params. '.var_export($pathParts, true)); + die('please use auth.php/username?params.'); } |