From: Jo-Philipp Wich Date: Mon, 13 Jun 2011 23:07:54 +0000 (+0000) Subject: themes/base: fix error r7144, location.host already includes the port number and... X-Git-Tag: 0.11.0~2060 X-Git-Url: https://git.archive.openwrt.org/?p=project%2Fluci.git;a=commitdiff_plain;h=d4053ad4925dbd932a584b34665a1c5bc7ab6ce1 themes/base: fix error r7144, location.host already includes the port number and is widely supported, remove the location.hostname fallback and port number handling --- diff --git a/themes/base/htdocs/luci-static/resources/xhr.js b/themes/base/htdocs/luci-static/resources/xhr.js index 096a04484..23bf96e02 100644 --- a/themes/base/htdocs/luci-static/resources/xhr.js +++ b/themes/base/htdocs/luci-static/resources/xhr.js @@ -43,8 +43,7 @@ XHR = function() var xhr = this._xmlHttp; var code = this._encode( data ); - url = location.protocol + '//' + (location.host || location.hostname) + - ( location.port ? ':' + location.port : '' ) + url; + url = location.protocol + '//' + location.host + url; if( code ) if( url.substr(url.length-1,1) == '&' )