Comment 1 for bug 568114

Revision history for this message
Curtis Hovey (sinzui) wrote : Re: Two different persons have the same URL on +mailing-list-subscribers

The code is calling the person formatter for each person in mailing_list.getSubscribers(). I think the issue is in getSubscribers() which does this
    results.order_by(Person.displayname)

I believe storm is doing this. I suspect adding
    results.order_by(Person.displayname, Person.id)