Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKonrad Kolosowski2002-11-04 21:07:14 +0000
committerKonrad Kolosowski2002-11-04 21:07:14 +0000
commit17ae506610091aafb4e0063fcf0eb90981baa885 (patch)
tree5e76de0cb67e036e2120f5e7f60a5125488595cb /org.eclipse.help.webapp/index.jsp
parent80d05a04c6ef1bd93b3be37e29457df2a817236d (diff)
downloadeclipse.platform.ua-17ae506610091aafb4e0063fcf0eb90981baa885.tar.gz
eclipse.platform.ua-17ae506610091aafb4e0063fcf0eb90981baa885.tar.xz
eclipse.platform.ua-17ae506610091aafb4e0063fcf0eb90981baa885.zip
check for browsersv20021104
Diffstat (limited to 'org.eclipse.help.webapp/index.jsp')
-rw-r--r--org.eclipse.help.webapp/index.jsp2
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.help.webapp/index.jsp b/org.eclipse.help.webapp/index.jsp
index 097d19dff..1f769199c 100644
--- a/org.eclipse.help.webapp/index.jsp
+++ b/org.eclipse.help.webapp/index.jsp
@@ -12,7 +12,7 @@
}
RequestData data = new RequestData(application,request);
- if(data.isIE() || data.isMozilla()){
+ if(data.isIE() || (data.isMozilla() && data.isGecko()) ){
request.getRequestDispatcher("/advanced/index.jsp").forward(request, response);
}else{
request.getRequestDispatcher("/basic/index.jsp").forward(request, response);

Back to the top