Commit 4c4f4a39 authored by Jay Kline's avatar Jay Kline Committed by jay

Logic bug fix. Previously any authenticated user would be authenticated to...

Logic bug fix.  Previously any authenticated user would be authenticated to any user. Thanks to Greg Hudson for pointing this out.


git-svn-id: http://svn.igniterealtime.org/svn/repos/openfire/trunk@8684 b35dd754-fafc-0310-a699-88a17e54d16e
parent a3cfbd25
...@@ -165,9 +165,9 @@ public class AuthorizationManager { ...@@ -165,9 +165,9 @@ public class AuthorizationManager {
} }
return false; return false;
} }
// User exists
return true;
} }
// User exists
return true;
} }
// Not authorized. // Not authorized.
return false; return false;
......
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