diff options
| author | Jannis Leidel <jannis@leidel.info> | 2010-10-01 02:30:45 +0000 |
|---|---|---|
| committer | Jannis Leidel <jannis@leidel.info> | 2010-10-01 02:30:45 +0000 |
| commit | 113b0bde6664f131db7191bf27089b3e2d6daa3a (patch) | |
| tree | 170e7fc136622dd9b2bcb2eb84d41b896e1d6316 | |
| parent | 524b6bae294fe4f5623d3db222257129c42a02a0 (diff) | |
Fixed #14362 -- Made sure all parameters are passed to the ManyToManyRawIdWidget. Thanks, tyron.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@13970 bcc190cf-cafb-0310-a4f2-bffc1f526a37
| -rw-r--r-- | django/contrib/admin/widgets.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/django/contrib/admin/widgets.py b/django/contrib/admin/widgets.py index eb7f217a9a..81c8ebf3a0 100644 --- a/django/contrib/admin/widgets.py +++ b/django/contrib/admin/widgets.py @@ -155,9 +155,6 @@ class ManyToManyRawIdWidget(ForeignKeyRawIdWidget): 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: |
