Skip to content

Commit

Permalink
Merge #5525 from 4.1 into 5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
BalusC committed Dec 7, 2024
2 parents 7f12621 + 83af87b commit 3a3fd1b
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -458,6 +458,10 @@ protected String derivePhysicalViewId(FacesContext ctx, String requestViewId, bo
* @since 1.2
*/
protected String normalizeRequestURI(String viewId, String mapping) {
if (mapping.isEmpty()) {
return viewId;
}

boolean logged = false;

while (viewId.startsWith(mapping)) {
Expand Down

0 comments on commit 3a3fd1b

Please sign in to comment.