issueTracker의 쪽지 발송 오류 때문에 히스토리가 저장되지 않던 버그 수정

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@5050 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
zero 2008-12-09 03:50:31 +00:00
parent 8d61cd768d
commit 7f2c857505
2 changed files with 13 additions and 13 deletions

View file

@ -88,7 +88,7 @@ String.prototype.setQuery = function(key, val) {
for(var i in args) {
if( !args.hasOwnProperty(i) ) continue;
var arg = args[i];
if(!arg.toString().trim()) continue;
if(!arg || !arg.toString().trim()) continue;
q_list[q_list.length] = i+'='+arg;
}
@ -971,4 +971,4 @@ function xSleep(sec) {
while( sleep.getTime() - now.getTime() < sec) {
sleep = new Date();
}
}
}