We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d071f6f + 4a13459 commit 0d78685Copy full SHA for 0d78685
src/org/opensolaris/opengrok/web/PageConfig.java
@@ -1237,7 +1237,7 @@ public String getLatestRevisionLocation() {
1237
1238
sb.append(req.getContextPath());
1239
sb.append(Prefix.XREF_P);
1240
- sb.append(path);
+ sb.append(Util.URIEncodePath(path));
1241
sb.append("?r=");
1242
sb.append(Util.URIEncode(getLatestRevision()));
1243
web/list.jsp
@@ -254,6 +254,7 @@ document.pageReady.push(function() { pageReadyList();});
254
String location = cfg.getLatestRevisionLocation();
255
if (location != null) {
256
response.sendRedirect(location);
257
+ return;
258
} else {
259
xrefFile = cfg.findDataFile();
260
}
0 commit comments