diff --git a/src/helma/framework/RequestTrans.java b/src/helma/framework/RequestTrans.java index 0c368de5..d27c2e61 100644 --- a/src/helma/framework/RequestTrans.java +++ b/src/helma/framework/RequestTrans.java @@ -615,7 +615,12 @@ public class RequestTrans implements Serializable { } try { - httpPassword = tok.nextToken(); + StringBuffer buf = new StringBuffer(tok.nextToken()); + while (tok.hasMoreTokens()) { + buf.append(":"); + buf.append(tok.nextToken()); + } + httpPassword = buf.toString(); } catch (NoSuchElementException e) { httpPassword = null; }