diff options
author | Gustavo Adrian <comfortablynumb84@gmail.com> | 2011-04-05 13:05:20 -0300 |
---|---|---|
committer | Gustavo Adrian <comfortablynumb84@gmail.com> | 2011-04-05 13:05:20 -0300 |
commit | e671a3dd6f8335b175973ee52f95231de088bc2e (patch) | |
tree | ce4e27d74ebd5aaf7864f9f9673a30d0aa81b429 | |
parent | 5a5349a50bb42e155625d2782695c907205bd7d9 (diff) | |
download | symfony-security-e671a3dd6f8335b175973ee52f95231de088bc2e.zip symfony-security-e671a3dd6f8335b175973ee52f95231de088bc2e.tar.gz symfony-security-e671a3dd6f8335b175973ee52f95231de088bc2e.tar.bz2 |
Fixed exception that was thrown while updating a field ACE
-rw-r--r-- | Acl/Dbal/MutableAclProvider.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Acl/Dbal/MutableAclProvider.php b/Acl/Dbal/MutableAclProvider.php index 52d1a9b..62667c8 100644 --- a/Acl/Dbal/MutableAclProvider.php +++ b/Acl/Dbal/MutableAclProvider.php @@ -776,7 +776,7 @@ QUERY; $aceId = $this->connection->executeQuery($this->getSelectAccessControlEntryIdSql($classId, $objectIdentityId, $field, $i))->fetchColumn(); $this->loadedAces[$aceId] = $ace; - $aceIdProperty = new \ReflectionProperty($ace, 'id'); + $aceIdProperty = new \ReflectionProperty('Symfony\Component\Security\Acl\Domain\Entry', 'id'); $aceIdProperty->setAccessible(true); $aceIdProperty->setValue($ace, intval($aceId)); } else { |