X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=js%2FJsHttpRequest.js;h=d89ff4b2ce756a056af255d7826ba9ce903df857;hb=171074993d8f6768cde0626697abd6b4eab732a6;hp=3ec48fd3328e35c2fc22bf4055d0e9adc9ea6a2a;hpb=f7d5b6bb6541df3591610e08bf83ccb8b107ea31;p=fa-stable.git diff --git a/js/JsHttpRequest.js b/js/JsHttpRequest.js index 3ec48fd3..d89ff4b2 100644 --- a/js/JsHttpRequest.js +++ b/js/JsHttpRequest.js @@ -457,7 +457,7 @@ JsHttpRequest.LOADERS.xml = { loader: function(req) { if (this.queryElem.length) return ['xml_no_form_upl']; // XMLHttpRequest (and MS ActiveX'es) cannot work with different domains. - if (this.url.match(new RegExp('^([a-z]+://[^\\/]+)(.*)', 'i'))) { + if (this.url.match(new RegExp('^([a-z]+://[^\\/]+)(.*)((:[0-9]*)+)', 'i'))) { // We MUST also check if protocols matched: cannot send from HTTP // to HTTPS and vice versa. if (RegExp.$1.toLowerCase() != document.location.protocol + '//' + document.location.hostname.toLowerCase()) {