#236 xml_js_filter.js에서 url뒤에 #이 있으면 제거하는 루틴이 올바르게 동작하지 않는 문제 발견. 수정후 commit

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@2778 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
zero 2007-10-15 11:19:11 +00:00
parent 19428d73fa
commit 169f27f9f4

View file

@ -23,7 +23,7 @@ function filterAlertMessage(ret_obj) {
var redirect_url = ret_obj["redirect_url"];
var url = location.href;
if(url.substr(-1)=="#") url = url.substr(0,url.length-1);
if(url.substr(url.length-1,1)=="#") url = url.substr(0,url.length-1);
if(typeof(message)!="undefined"&&message&&message!="success") alert(message);