From 15d37381344007267c5b5991c4885e7f4a1e5465 Mon Sep 17 00:00:00 2001 From: Colin Kuskie Date: Tue, 14 Apr 2009 23:29:09 +0000 Subject: [PATCH] Remove a strange clause from Inbox ORDER BY. --- docs/changelog/7.x.x.txt | 1 + lib/WebGUI/Inbox.pm | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/changelog/7.x.x.txt b/docs/changelog/7.x.x.txt index f06bb69b3..2b1ff5fc9 100644 --- a/docs/changelog/7.x.x.txt +++ b/docs/changelog/7.x.x.txt @@ -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 diff --git a/lib/WebGUI/Inbox.pm b/lib/WebGUI/Inbox.pm index 012debd13..097be2312 100644 --- a/lib/WebGUI/Inbox.pm +++ b/lib/WebGUI/Inbox.pm @@ -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{}; }