diff --git a/Dbal/AclProvider.php b/Dbal/AclProvider.php index eb12932..786b996 100644 --- a/Dbal/AclProvider.php +++ b/Dbal/AclProvider.php @@ -520,6 +520,9 @@ private function hydrateObjectIdentities(Result $stmt, array $oidLookup, array $ $username, $securityIdentifier] = array_values($data); + // FIX: remove duplicate slashes + $classType = str_replace('\\\\', '\\', $classType); + // has the ACL been hydrated during this hydration cycle? if (isset($acls[$aclId])) { $acl = $acls[$aclId];