First, some history:
- When BfA was first released, Communities were included with a new Guild Roster view which did not have the Last Online column.
- After many complaints, patch 8.0.1.27144 was released which changed the Zone column in the new Guild Roster view to display either the Zone Name (if member was logged on)
or the Last Online time (if the member was offline). - However from patch 8.0.1.27144 through to 10.1.0.49426, clicking on the Zone column in the new Guild Roster view only sorts all the guild members by Zone Name.
It only cosmetically displays the Last Online time instead of the Zone name, but it is still sorted in Zone name sequence only. - Guild leaders and guild officers need to be able to see the Last Online time in sorted sequence so that they can easily see the members
who have not logged on for a long time and then remove them. - The classic Guild Roster still existed in Retail, before 10.1, so guild officers could use that as a work-around to see the sorted Last Online (Player Status) view.
- However, now that the classic guild roster has been removed in 10.1, guild officers cannot see the Last Online time sorted because the Zone column sort is still broken.
Coding Bug:
7. From BfA 8.0.1 through DF 10.1 (see 3. above), in the CommunitiesMemberList.lua file, the CommunitiesMemberListMixin:SortByColumnIndex function, has always had the coding
to correctly sort the Zone column by Zone name and Last Online time.
8. However, since that Zone column change in BfA 8.0.1, the correctly sorted member list is immediately re-sorted by some old coding which calls the CommunitiesUtil.SortMemberInfoWithOverride function (presumably that old coding was to fix some previous sort bug).
This overrides the sort sequence back to Zone name sequence only, so it loses the sorted sequence by Last Online time.
Bug Fix:
9. In the CommunitiesMemberListMixin:SortByColumnIndex function, do not override the correctly sorted member list if the sortAttribute is equal to “zone”.
That is, the 2-line code bug fix as follows:
if sortAttribute ~= “zone” then
CommunitiesUtil.SortMemberInfoWithOverride(…);
end
Urgency:
10. Guild officers and guild members urgently need this bug to be fixed so that they can see the Last Online time sorted correctly in the Zone column.
Now that the old guild roster has been removed in Retail 10.1, there is no work-around now, so this bug fix has become critical priority for all guilds, to be able to admin their members by viewing the most inactive players by their Last Online times.