Is anyone using M2M fields that cross apps? I am trying to do so, but am getting strange results.
I have two models: categories.Category and items.Item. Item has a M2M link to Category. Everything seems to work fine, except that the 'get_related_list' methods seem to be messed up. From looking at the docs, I would expect Item instances to have 'get_categories_category_list' and Category instances to have 'get_items_item_list'. However... items.Item instances have 'get_category_list', which works as it should. categories.Category instances, however, have nothing related to Item. :-/ I noticed that there is no test case for this. Is anyone currently doing it? Or am I the only one that it doesn't work for? MWM

