*** authz_policy.py	2009-11-24 19:46:42.000000000 +1300
--- authz_policy2.py	2009-11-24 19:46:08.000000000 +1300
***************
*** 204,213 ****
      def authz_permissions(self, resource_key, username):
          # TODO: Handle permission negation in sections. eg. "if in this
          # ticket, remove TICKET_MODIFY"
-         if resource_key == '':
-         	resource_key = '*@*'
-         	self.env.log.debug('Empty resource_key')
- 
          valid_users = ['*', 'anonymous']
          if username and username != 'anonymous':
              valid_users += ['authenticated', username]
--- 204,209 ----

