diff options
author | Tom Needham <needham.thomas@gmail.com> | 2013-01-16 20:29:29 +0000 |
---|---|---|
committer | Tom Needham <needham.thomas@gmail.com> | 2013-01-16 20:29:29 +0000 |
commit | 358671ac1d55f8304b1c1aae285e497ed512ce0c (patch) | |
tree | 16bd1db1a65a1c149736e3ee08392f9ad3129df9 | |
parent | 098c84a29c5390608103d00cfeffa1422b621efe (diff) | |
download | nextcloud-server-358671ac1d55f8304b1c1aae285e497ed512ce0c.tar.gz nextcloud-server-358671ac1d55f8304b1c1aae285e497ed512ce0c.zip |
Fix incorrect indentation
-rw-r--r-- | lib/api.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/api.php b/lib/api.php index da0c2417dcf..e0097a7abf8 100644 --- a/lib/api.php +++ b/lib/api.php @@ -94,8 +94,8 @@ class OC_API { $response = new OC_OCS_Result(null, 998, 'Api method not found'); } } else { - header('WWW-Authenticate: Basic realm="Authorisation Required"'); - header('HTTP/1.0 401 Unauthorized'); + header('WWW-Authenticate: Basic realm="Authorisation Required"'); + header('HTTP/1.0 401 Unauthorized'); $response = new OC_OCS_Result(null, 997, 'Unauthorised'); } // Send the response |