mirror of https://github.com/apache/lucene.git
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:
parent
6183d72f24
commit
9f3fe687ac
|
@ -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
|
||||
----------------------
|
||||
|
|
|
@ -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");
|
||||
|
|
Loading…
Reference in New Issue