Commit abf45db2 authored by Matt Tucker's avatar Matt Tucker Committed by matt

Make existing plugins work. JM-1489

git-svn-id: http://svn.igniterealtime.org/svn/repos/openfire/trunk@10871 b35dd754-fafc-0310-a699-88a17e54d16e
parent 8b2e120f
......@@ -127,6 +127,9 @@ public class AuthCheckFilter implements Filter {
}
// Get the page we're on:
String url = request.getRequestURI().substring(1);
if (url.startsWith("plugins/")) {
url = url.substring("plugins/".length());
}
// See if it's contained in the exclude list. If so, skip filter execution
boolean doExclude = false;
for (String exclude : excludes) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment