Release new version

This commit is contained in:
Grahame Grieve 2019-10-02 15:01:46 +10:00
parent 13d029898f
commit 17e7333bca
1 changed files with 0 additions and 3 deletions

View File

@ -1171,14 +1171,11 @@ public class ProfileUtilities extends TranslatingUtilities {
String url = dt.getUserString("path");
int i = url.lastIndexOf("/");
if (i < 1) {
System.out.println(indent+"Base for "+dt.getUrl()+" -> "+webUrl);
return defWebRoot;
} else {
System.out.println(indent+"Base for "+dt.getUrl()+" -> "+url.substring(0, i));
return url.substring(0, i+1);
}
} else {
System.out.println(indent+"Base for "+dt.getUrl()+" -> "+webUrl);
return webUrl;
}
}