summaryrefslogtreecommitdiff
path: root/BKUOnline/src/main/webapp
diff options
context:
space:
mode:
authortkellner <tkellner@8a26b1a7-26f0-462f-b9ef-d0e30c41f5a4>2011-09-08 13:41:11 +0000
committertkellner <tkellner@8a26b1a7-26f0-462f-b9ef-d0e30c41f5a4>2011-09-08 13:41:11 +0000
commitd11243a14804bfc000a784c04647768778607362 (patch)
treec68004108f916c624cfad715b3168a4b60946809 /BKUOnline/src/main/webapp
parent87bc1a6d4feccd3fad5d08a0f941f053e0172151 (diff)
downloadmocca-d11243a14804bfc000a784c04647768778607362.tar.gz
mocca-d11243a14804bfc000a784c04647768778607362.tar.bz2
mocca-d11243a14804bfc000a784c04647768778607362.zip
Redirect to german 404 pages
git-svn-id: https://joinup.ec.europa.eu/svn/mocca/trunk@985 8a26b1a7-26f0-462f-b9ef-d0e30c41f5a4
Diffstat (limited to 'BKUOnline/src/main/webapp')
-rw-r--r--BKUOnline/src/main/webapp/404.jsp4
1 files changed, 2 insertions, 2 deletions
diff --git a/BKUOnline/src/main/webapp/404.jsp b/BKUOnline/src/main/webapp/404.jsp
index f5b97295..c4a351ce 100644
--- a/BKUOnline/src/main/webapp/404.jsp
+++ b/BKUOnline/src/main/webapp/404.jsp
@@ -1,9 +1,9 @@
<%
String redirectURL = pageContext.getServletContext().getContextPath();
if (pageContext.getErrorData().getRequestURI().contains("/help/"))
- redirectURL += "/help/404h.html";
+ redirectURL += "/help/de/404h.html";
else
- redirectURL += "/help/404.html";
+ redirectURL += "/help/de/404.html";
response.sendRedirect(redirectURL);
%>