In RC4 of PrivateMSG new messages are listed in the wrong order (by Date/Last Update).
Have a look at the screenshot to see, what I mean.
| Comment | File | Size | Author |
|---|---|---|---|
| #1 | privatemsg_order_fix.patch | 957 bytes | berdir |
| privatemsg_newmsg_order.png | 36.43 KB | gold-dupe |
Comments
Comment #1
berdirCurrently, the list is sorted by is_new, which is an alias for SUM(is_new). That does not make sense, instead, it should use the old MAX(is_new) because we don't care how many new messages a thread has.
Comment #2
naheemsays commentedyes, this makes sense - untested as my setup is still... evolving, but I think this should go in.
(Saying that, I like the semantic effect that using sum has... potentially more important unread messages will be higher up...)
Comment #3
berdirFixed in 6.x-1.x-dev and 7.x-1.x-dev.