Merged V3.2 to HEAD

16939: Merged V3.1 to V3.2
      16938: ETHREEOH-622: AuthorityServiceImpl uses userNameMatcher to check for admin users according to case sensitivity settings
      16934: ETHREEOH-2584: Coding error in BaseSSOAuthenticationFilter
   16924: LDAP Performance
      - Created NodeService addChild variants that can add associations to multiple parents (groups/zones) at the same time with a single path check.
      - Created AuthorityService addAuthority variant that can add an authority to multiple groups at the same time, using the above
      - Optimized group association creation strategy. Groups and Persons created in 'depth first' order (root groups first, parents last). Prevents the nodes having to be reindexed.


git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@17070 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Dave Ward
2009-10-21 15:52:13 +00:00
parent b17d1afcb2
commit d1ab20362b

View File

@@ -497,7 +497,7 @@ public abstract class BaseSSOAuthenticationFilter extends BaseAuthenticationFilt
int pos = m_lastResolvedServerName.indexOf("."); int pos = m_lastResolvedServerName.indexOf(".");
if (pos != -1) if (pos != -1)
{ {
m_lastResolvedServerName = m_lastResolvedServerName.substring(0, pos - 1); m_lastResolvedServerName = m_lastResolvedServerName.substring(0, pos);
} }
} }
catch (UnknownHostException ex) catch (UnknownHostException ex)