From: <pdo...@us...> - 2023-09-03 07:08:30
|
Revision: 14998 http://sourceforge.net/p/squirrelmail/code/14998 Author: pdontthink Date: 2023-09-03 07:08:28 +0000 (Sun, 03 Sep 2023) Log Message: ----------- Add TODO Modified Paths: -------------- trunk/squirrelmail/functions/mailbox_display.php Modified: trunk/squirrelmail/functions/mailbox_display.php =================================================================== --- trunk/squirrelmail/functions/mailbox_display.php 2023-09-03 06:46:42 UTC (rev 14997) +++ trunk/squirrelmail/functions/mailbox_display.php 2023-09-03 07:08:28 UTC (rev 14998) @@ -823,6 +823,7 @@ 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 @@ 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: This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |