From 754b9c7c318a90609d4bd983d299ad827f8ba75d Mon Sep 17 00:00:00 2001 From: Colin Kuskie Date: Thu, 16 Apr 2009 23:17:55 +0000 Subject: [PATCH] Reverting change to Inbox default SORT BY. --- docs/changelog/7.x.x.txt | 1 - lib/WebGUI/Inbox.pm | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/changelog/7.x.x.txt b/docs/changelog/7.x.x.txt index c081b7af3..c28d5ddf3 100644 --- a/docs/changelog/7.x.x.txt +++ b/docs/changelog/7.x.x.txt @@ -20,7 +20,6 @@ - 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 (Eric Kennedy) - Survey editor now keeps survey objects in a scrollable panel to keep buttons always in view. - fixed #10198: Cannot drag assets to new positions on page - fixed #10190: Matrix 2.0 - Strange characters in "Show Ratings" box diff --git a/lib/WebGUI/Inbox.pm b/lib/WebGUI/Inbox.pm index 097be2312..5841efd4a 100644 --- a/lib/WebGUI/Inbox.pm +++ b/lib/WebGUI/Inbox.pm @@ -363,7 +363,7 @@ sub getMessagesPaginator { $sortBy = qq{ibox.$sortBy}; } else { - $sortBy = q{messageStatus DESC, dateStamp DESC}; + $sortBy = q{messageStatus='pending' DESC, dateStamp DESC}; $sortDir = q{}; }