Skip to content

Commit c11cd2d

Browse files
committed
Additional fix for BZ 58660
Need to override new method git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@1716886 13f79535-47bb-0310-9956-ffa450edef68
1 parent 816552a commit c11cd2d

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

java/org/apache/catalina/servlets/WebdavServlet.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -375,6 +375,11 @@ protected boolean checkIfHeaders(HttpServletRequest request,
375375
*/
376376
@Override
377377
protected String getRelativePath(HttpServletRequest request) {
378+
return getRelativePath(request, false);
379+
}
380+
381+
@Override
382+
protected String getRelativePath(HttpServletRequest request, boolean allowEmptyPath) {
378383
String pathInfo;
379384

380385
if (request.getAttribute(RequestDispatcher.INCLUDE_REQUEST_URI) != null) {

0 commit comments

Comments
 (0)