diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2016-03-06 19:53:19 +0100 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2016-03-06 19:53:19 +0100 |
commit | d043b6ba9107930a6c25325957e6c83bc7aacd8d (patch) | |
tree | 3abc526b8d4482211364a0b4e29822a50a69fe14 | |
parent | 0a5f34ab8005cd0bfc8302cefe72a9a24f86e451 (diff) | |
parent | ef6672998026952c40d97e7fc22c87a469c6c28a (diff) | |
download | nextcloud-server-d043b6ba9107930a6c25325957e6c83bc7aacd8d.tar.gz nextcloud-server-d043b6ba9107930a6c25325957e6c83bc7aacd8d.zip |
Merge pull request #22889 from owncloud/stable9-use-custom-header
[stable9] Use custom header
-rw-r--r-- | apps/updatenotification/js/admin.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/updatenotification/js/admin.js b/apps/updatenotification/js/admin.js index 2fc8c9d99b1..3bc5dd21527 100644 --- a/apps/updatenotification/js/admin.js +++ b/apps/updatenotification/js/admin.js @@ -24,7 +24,7 @@ $(document).ready(function(){ $.ajax({ url: OC.webroot+'/updater/', headers: { - 'Authorization': loginToken + 'X-Updater-Auth': loginToken }, method: 'POST', success: function(data){ |