back-pedalled on one of the previous changes

in getNodeHref().
This commit is contained in:
hns 2001-09-10 14:23:45 +00:00
parent 0472058607
commit 130d88ef63

View file

@ -673,7 +673,7 @@ public class Application extends UnicastRemoteObject implements IRemoteApp, IRep
// String href = n.getUrl (root, users, tmpname, siteroot);
String divider = "/";
StringBuffer b = new StringBuffer (baseURI);
StringBuffer b = new StringBuffer ();
Object p = elem;
int loopWatch = 0;
@ -707,7 +707,7 @@ public class Application extends UnicastRemoteObject implements IRemoteApp, IRep
if (actionName != null)
b.append (UrlEncoder.encode (actionName));
return b.toString ();
return baseURI + b.toString ();
}