Author: jezdez Date: 2010-09-30 21:30:45 -0500 (Thu, 30 Sep 2010) New Revision: 13970
Modified: django/trunk/django/contrib/admin/widgets.py Log: Fixed #14362 -- Made sure all parameters are passed to the ManyToManyRawIdWidget. Thanks, tyron. Modified: django/trunk/django/contrib/admin/widgets.py =================================================================== --- django/trunk/django/contrib/admin/widgets.py 2010-10-01 02:05:45 UTC (rev 13969) +++ django/trunk/django/contrib/admin/widgets.py 2010-10-01 02:30:45 UTC (rev 13970) @@ -155,9 +155,6 @@ A Widget for displaying ManyToMany ids in the "raw_id" interface rather than in a <select multiple> box. """ - def __init__(self, rel, attrs=None, using=None): - super(ManyToManyRawIdWidget, self).__init__(rel, attrs, using=None) - def render(self, name, value, attrs=None): attrs['class'] = 'vManyToManyRawIdAdminField' if value: -- You received this message because you are subscribed to the Google Groups "Django updates" group. To post to this group, send email to django-upda...@googlegroups.com. To unsubscribe from this group, send email to django-updates+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/django-updates?hl=en.