Mercurial > public > src > moin > 1.9
diff MoinMoin/config/multiconfig.py @ 1552:f9639ed07af2
using request.cfg.cache more
author | Thomas Waldmann <tw AT waldmann-edv DOT de> |
---|---|
date | Thu, 14 Sep 2006 23:09:53 +0200 |
parents | e36313297589 |
children | 0eaaba71dfc0 |
line wrap: on
line diff
--- a/MoinMoin/config/multiconfig.py Thu Sep 14 22:59:17 2006 +0200 +++ b/MoinMoin/config/multiconfig.py Thu Sep 14 23:09:53 2006 +0200 @@ -599,9 +599,9 @@ # Cache variables for the properties below self._iwid = self._iwid_full = self._meta_dict = None - self._acl_rights_before = AccessControlList(self, [self.acl_rights_before]) - self._acl_rights_default = AccessControlList(self, [self.acl_rights_default]) - self._acl_rights_after = AccessControlList(self, [self.acl_rights_after]) + self.cache.acl_rights_before = AccessControlList(self, [self.acl_rights_before]) + self.cache.acl_rights_default = AccessControlList(self, [self.acl_rights_default]) + self.cache.acl_rights_after = AccessControlList(self, [self.acl_rights_after]) if self.url_prefix is not None: # remove this code when url_prefix setting is removed self.url_prefix_static = self.url_prefix