diff options
author | James Lal <james@lightsofapollo.com> | 2012-07-06 09:02:58 -0700 |
---|---|---|
committer | James Lal <james@lightsofapollo.com> | 2012-07-06 09:02:58 -0700 |
commit | be1e5c9f50bea5e820da048c0f4d4f5810a86281 (patch) | |
tree | 68fa8975aaf62b28549be42c99b65d0ebaf415b7 /lib/caldav/request | |
parent | cb10a247cfc91511cfc0e31bfcbb1d6f7d178529 (diff) | |
download | jsCalDAV-be1e5c9f50bea5e820da048c0f4d4f5810a86281.tar.gz |
Add content type
Diffstat (limited to 'lib/caldav/request')
-rw-r--r-- | lib/caldav/request/abstract.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/caldav/request/abstract.js b/lib/caldav/request/abstract.js index 04d2128..4b72fd5 100644 --- a/lib/caldav/request/abstract.js +++ b/lib/caldav/request/abstract.js @@ -43,6 +43,7 @@ } this.xhr = new XHR(xhrOptions); + this.xhr.headers['Content-Type'] = 'text/xml'; } Abstract.prototype = { |