witten
/
luminotes
Archived
1
0
Fork 0

Fixed bug in model.Group SQL select.

This commit is contained in:
Dan Helfman 2008-06-02 19:53:09 -07:00
parent 8d3783825a
commit 78f049c305
1 changed files with 2 additions and 2 deletions

View File

@ -87,8 +87,8 @@ class Group( Persistent ):
where
user_group.group_id = %s and
user_group.user_id = luminotes_user_current.id%s
order by user_group.username;
""" % quote( self.object_id )
order by luminotes_user_current.username;
""" % ( quote( self.object_id ), admin_clause )
def to_dict( self ):
d = Persistent.to_dict( self )