Details
-
Bug
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
1.0.0-alpha-2
-
None
Description
Code in EC.getViewIdFromPath is missing an else clause causing us to drop the suffix translation. I.e. code should have an else before the if (isPrefixedMapped) --inserted code (else) is in all caps:
// Okay now figure out whether this is prefix or suffixed mapped
if (isSuffixedMapped(url, mFacesMappings))
ELSE if (isPrefixedMapped(url, mFacesMappings))
{ viewId = viewIdFromPrefixMapping(url, mFacesMappings); }else
{ // Set to what follows the URL viewId = url; }return viewId;