diff -r bd552b341334 -r 742e3eb16f81 hooks/security.py --- a/hooks/security.py Tue Dec 22 19:26:59 2009 +0100 +++ b/hooks/security.py Tue Dec 22 19:27:26 2009 +0100 @@ -100,7 +100,7 @@ rschema = self._cw.repo.schema[self.rtype] rdef = rschema.rdef(self._cw.describe(self.eidfrom)[0], self._cw.describe(self.eidto)[0]) - rdef.check_perm(session, 'add', fromeid=self.eidfrom, toeid=self.eidto) + rdef.check_perm(self._cw, 'add', fromeid=self.eidfrom, toeid=self.eidto) class AfterAddRelationSecurityHook(SecurityHook): @@ -135,5 +135,5 @@ rschema = self._cw.repo.schema[self.rtype] rdef = rschema.rdef(self._cw.describe(self.eidfrom)[0], self._cw.describe(self.eidto)[0]) - rdef.check_perm(self._cw, 'add', fromeid=self.eidfrom, toeid=self.eidto) + rdef.check_perm(self._cw, 'delete', fromeid=self.eidfrom, toeid=self.eidto)