SOLR-1174 -- Fix Logging admin form submit url for multicore

git-svn-id: https://svn.apache.org/repos/asf/lucene/solr/trunk@776984 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Shalin Shekhar Mangar 2009-05-21 07:17:39 +00:00
parent 6183d72f24
commit 9f3fe687ac
2 changed files with 3 additions and 3 deletions

View File

@ -382,6 +382,8 @@ Bug Fixes
46. SOLR-825: Enables highlighting for range/wildcard/fuzzy/prefix queries if using hl.usePhraseHighlighter=true
and hl.highlightMultiTerm=true. (Mark Miller)
47. SOLR-1174: Fix Logging admin form submit url for multicore. (Jacob Singh via shalin)
Other Changes
----------------------

View File

@ -65,9 +65,7 @@ public final class LogLevelSelection extends HttpServlet {
"with a level setting. Note that this only shows " +
"JDK Log levels.</p>\n");
out.write("<form action='");
out.write(request.getRequestURI());
out.write("' method='POST'>\n");
out.write("<form method='POST'>\n");
out.write("<input type='submit' name='submit' value='set' " +
"class='button'>\n");