* Make req.path start with "/"

This commit is contained in:
hns 2007-03-27 12:34:20 +00:00
parent 0dbf6751b7
commit 9fe75abfba

View file

@ -840,7 +840,7 @@ public abstract class AbstractServletClient extends HttpServlet {
t = new StringTokenizer(uri, "/");
int uriTokens = t.countTokens();
StringBuffer pathbuffer = new StringBuffer();
StringBuffer pathbuffer = new StringBuffer("/");
String encoding = getApplication().getCharset();