diff options
author | Florian Pritz <bluewind@xinu.at> | 2012-04-08 23:39:19 +0200 |
---|---|---|
committer | Florian Pritz <bluewind@xinu.at> | 2012-04-09 20:47:59 +0200 |
commit | 69d92ecc7c7e5aeda44f9fb2a22906e25c6e5279 (patch) | |
tree | 5f26d348e029ad881a96f88926ab04ba2ecdbee4 /data | |
parent | 1040dbad987e280c61134c83194832224ff870b5 (diff) |
remove password from text form
Signed-off-by: Florian Pritz <bluewind@xinu.at>
Diffstat (limited to 'data')
-rw-r--r-- | data/js/upload_form.js | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/data/js/upload_form.js b/data/js/upload_form.js index 598d86465..cb8f072d9 100644 --- a/data/js/upload_form.js +++ b/data/js/upload_form.js @@ -52,7 +52,6 @@ function do_paste() { //Send the proper header information along with the request http.setRequestHeader("Content-type", "multipart/form-data; boundary=" + boundary); - http.setRequestHeader("Authorization", "Basic " + encode64(":" + document.getElementById("textarea_password").value)); http.onreadystatechange = function() { if(http.readyState == 4 && http.status == 200) { |