Commit bb6d5dc6 authored by James Bennett's avatar James Bennett
Browse files

Fixed #9795: Since related-object selection widgets take limit_choices_to into...

Fixed #9795: Since related-object selection widgets take limit_choices_to into account, the offending code is no longer necessary and can simply be removed.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@9641 bcc190cf-cafb-0310-a4f2-bffc1f526a37
parent a1cbeb9a
Loading
Loading
Loading
Loading
+0 −3
Original line number Diff line number Diff line
@@ -237,9 +237,6 @@ class ChangeList(object):
                    qs = qs.distinct()
                    break

        if self.is_popup and self.opts.one_to_one_field:
            qs = qs.complex_filter(self.opts.one_to_one_field.rel.limit_choices_to)

        return qs

    def url_for_result(self, result):