Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--org.eclipse.help.webapp/index.jsp2
1 files changed, 2 insertions, 0 deletions
diff --git a/org.eclipse.help.webapp/index.jsp b/org.eclipse.help.webapp/index.jsp
index 90b87f669..e863209dc 100644
--- a/org.eclipse.help.webapp/index.jsp
+++ b/org.eclipse.help.webapp/index.jsp
@@ -17,6 +17,8 @@
String srcNavFrame = "nav.html";
if(request.getParameter("tab")!=null)
srcNavFrame=srcNavFrame+"?tab="+request.getParameter("tab");
+ else
+ srcNavFrame=srcNavFrame+"?tab=toc";
if(request.getParameter("toc")!=null)
srcNavFrame=srcNavFrame+"&toc="+request.getParameter("toc");
if(request.getParameter("topic")!=null)

Back to the top