From f73458230a2739092b014424d90d079c9ae7877a Mon Sep 17 00:00:00 2001 From: pdontthink Date: Sun, 3 Sep 2023 07:08:28 +0000 Subject: [PATCH] Add TODO git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@14998 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- functions/mailbox_display.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/functions/mailbox_display.php b/functions/mailbox_display.php index 358fa6d8..fcb7ca43 100644 --- a/functions/mailbox_display.php +++ b/functions/mailbox_display.php @@ -823,6 +823,7 @@ function _getSortField($sort,$bServerSort) { break; case SQSORT_FROM_ASC: case SQSORT_FROM_DESC: +// TODO: If capabilities include SORT=DISPLAY then this can be DISPLAYFROM... should this be a user or admin option? Maybe it could cycle/switch between FROM and DISPLAYFROM? $sSortField = 'FROM'; break; case SQSORT_SUBJ_ASC: @@ -835,6 +836,7 @@ function _getSortField($sort,$bServerSort) { break; case SQSORT_TO_ASC: case SQSORT_TO_DESC: +// TODO: If capabilities include SORT=DISPLAY then this can be DISPLAYTO... should this be a user or admin option? Maybe it could cycle/switch between TO and DISPLAYTO? $sSortField = 'TO'; break; case SQSORT_CC_ASC: -- 2.25.1