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

@ -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{};
}