SVN commit 516242 by rodda: Disallow non webdav*:// urls from attempting to list directories M +5 -0 http.cc --- branches/KDE/3.5/kdelibs/kioslave/http/http.cc #516241:516242 @@ -646,6 +646,11 @@ if ( !checkRequestURL( url ) ) return; + if (!url.protocol().startsWith("webdav")) { + error(ERR_UNSUPPORTED_ACTION, url.prettyURL()); + return; + } + davStatList( url, false ); }