git-svn-id: http://xe-core.googlecode.com/svn/trunk@1304 201d5d3c-b55e-5fd7-737f-ddc643e51545

This commit is contained in:
zero 2007-04-24 06:33:39 +00:00
parent 092109c147
commit d50cef81d4
4 changed files with 23 additions and 7 deletions

View file

@ -44,7 +44,7 @@ String.prototype.setQuery = function(key, val) {
}
return uri+"?"+q_list.join("&");
} else {
if(val.trim()) return uri+"?"+key+"="+val;
if(val.toString().trim()) return uri+"?"+key+"="+val;
else return uri;
}
}