Skip to content

Commit

Permalink
WBRI-164
Browse files Browse the repository at this point in the history
git-svn-id: http://anonsvn.jboss.org/repos/weld/ri/trunk@1811 1c488680-804c-0410-94cd-c6b725194a0e
  • Loading branch information
nickarls committed Mar 7, 2009
1 parent f0aafdd commit 8f1bb8d
Showing 1 changed file with 8 additions and 0 deletions.
Expand Up @@ -79,6 +79,14 @@ public UrlTransformer getRedirectView()
{
String requestPath = context.getExternalContext().getRequestContextPath();
URL = URL.substring(URL.indexOf(requestPath) + requestPath.length());
}
else
{
int lastSlash = URL.lastIndexOf("/");
if (lastSlash > 0)
{
URL = URL.substring(lastSlash);
}
}
return this;
}
Expand Down

0 comments on commit 8f1bb8d

Please sign in to comment.