• Julien Muchembled's avatar
    ListBox: fix possible unexpected acquisition · 8e3d2599
    Julien Muchembled authored
    The use case is a listbox method being called for a document A
    and returning objects that:
    - aren't children of A
    - but wrapped with `.__of__(A)`
    
    By using `aq_self` instead of `aq_base`, the listbox could still
    acquire from the real parent of the returned object and wrongly access
    an attribute directly (e.g. comment) instead of using an appropriate
    method (if there's no `comment` attribute, getComment returns '').
    
    See merge request nexedi/erp5!1820
    8e3d2599
ListBox.py 126 KB