Fixed the "clicking on the translate button makes the thdl menu go away"
error. on the servlet version of the translation tool.
This commit is contained in:
parent
07fbbcaf45
commit
73d01111ca
1 changed files with 8 additions and 1 deletions
|
@ -143,7 +143,14 @@ public class OnLineScannerFilter extends HttpServlet {
|
|||
}
|
||||
|
||||
out.println("<h3 align=\"center\">The Online Tibetan to English Translation/Dictionary Tool</h3>");
|
||||
out.println("<form action=\"org.thdl.tib.scanner.OnLineScannerFilter\" method=POST>");
|
||||
if (useTHDLBanner)
|
||||
{
|
||||
out.println("<form action=\"org.thdl.tib.scanner.OnLineScannerFilter?thdlBanner=on\" method=POST>");
|
||||
}
|
||||
else
|
||||
{
|
||||
out.println("<form action=\"org.thdl.tib.scanner.OnLineScannerFilter\" method=POST>");
|
||||
}
|
||||
out.println("<table border=\"0\" width=\"100%\">");
|
||||
out.println(" <tr>");
|
||||
out.println(" <td width=\"25%\">");
|
||||
|
|
Loading…
Reference in a new issue