From a16caaed61fa6dbd4dd85930d62a4f32f83dfc30 Mon Sep 17 00:00:00 2001 From: taggon Date: Wed, 21 Apr 2010 03:24:57 +0000 Subject: [PATCH] =?UTF-8?q?Fixed=20:=20exec=5Fxml=EC=9D=B4=20=EC=A0=95?= =?UTF-8?q?=EC=83=81=EC=A0=81=EC=9C=BC=EB=A1=9C=20=EB=8F=99=EC=9E=91?= =?UTF-8?q?=ED=95=98=EC=A7=80=20=EC=95=8A=EB=8D=98=20=EB=B2=84=EA=B7=B8=20?= =?UTF-8?q?=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: http://xe-core.googlecode.com/svn/sandbox@7378 201d5d3c-b55e-5fd7-737f-ddc643e51545 --- common/js/xml_handler.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/js/xml_handler.js b/common/js/xml_handler.js index 2e28edfbf..b0f90000e 100644 --- a/common/js/xml_handler.js +++ b/common/js/xml_handler.js @@ -199,14 +199,14 @@ $.exec_xml = window.exec_xml = function(module, act, params, callback_func, resp if ($.isArray(ssl_actions) && params['act'] && $.inArray(params['act'], ssl_actions) >= 0) { var url = default_url || request_uri; - var port = https_port || 443; + var port = window.https_port || 443; var _ul = $('').attr('href', url)[0]; var target = 'https://' + _ul.hostname.replace(/:\d+$/, ''); if(port != 443) target += ':'+port; if(_ul.pathname[0] != '/') target += '/'; - target += ul.pathname; + target += _ul.pathname; xml_path = target.replace(/\/$/, '')+'/index.php'; }