Remove a strange clause from Inbox ORDER BY.

This commit is contained in:
Colin Kuskie 2009-04-14 23:29:09 +00:00
parent 0f311d9224
commit 15d3738134
2 changed files with 3 additions and 2 deletions

View file

@ -19,6 +19,7 @@
- fixed #10163: User List - alphabet search field broken
- fixed #9039: Synopsis not output as a meta field
- fixed #9939: checkout error with any payment method
- fixed #10162: Inbox Failing
7.7.3
- fixed #10094: double explanation in thread help

View file

@ -309,7 +309,7 @@ Properties which can be set to determine how many rows are returned, etc
=head4 sortBy
Column to sort the inbox by. Valid values are subject, sentBy, and dateStamp. Defaults to
dateStamp if value is invalid. Defaults to status="pending" DESC, dateStamp DESC if value not set.
dateStamp if value is invalid. Defaults to status DESC, dateStamp DESC if value not set.
=head4 sortDir
@ -363,7 +363,7 @@ sub getMessagesPaginator {
$sortBy = qq{ibox.$sortBy};
}
else {
$sortBy = q{messageStatus='pending' DESC, dateStamp DESC};
$sortBy = q{messageStatus DESC, dateStamp DESC};
$sortDir = q{};
}