fix guests

This commit is contained in:
j 2011-10-31 17:24:20 +01:00
parent c695e76a57
commit 08f547906b
1 changed files with 2 additions and 2 deletions

View File

@ -45,8 +45,8 @@ def parseCondition(condition, user):
else:
return q
if k == 'filename' and user.is_anonymous() or \
not user.get_profile().capability('canSeeFiles'):
if k == 'filename' and (user.is_anonymous() or \
not user.get_profile().capability('canSeeFiles')):
return Q(id=0)
key_type = settings.CONFIG['keys'].get(k, {'type':'string'}).get('type')