Use correct m2m join table name in LatestCommentsFeed

git-svn-id: http://code.djangoproject.com/svn/django/trunk@9089 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
James Bennett 2008-09-28 02:55:56 +00:00
parent cc72e64e19
commit 788e6c081b
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ class LatestCommentFeed(Feed):
is_removed = False, is_removed = False,
) )
if getattr(settings, 'COMMENTS_BANNED_USERS_GROUP', None): if getattr(settings, 'COMMENTS_BANNED_USERS_GROUP', None):
where = ['user_id NOT IN (SELECT user_id FROM auth_users_group WHERE group_id = %s)'] where = ['user_id NOT IN (SELECT user_id FROM auth_user_groups WHERE group_id = %s)']
params = [settings.COMMENTS_BANNED_USERS_GROUP] params = [settings.COMMENTS_BANNED_USERS_GROUP]
qs = qs.extra(where=where, params=params) qs = qs.extra(where=where, params=params)
return qs.order_by('-submit_date')[:40] return qs.order_by('-submit_date')[:40]