From: stekkel Date: Fri, 15 Mar 2002 11:54:45 +0000 (+0000) Subject: added user option to support message sort by internal date instead of the X-Git-Url: https://vcs.fsf.org/?p=squirrelmail.git;a=commitdiff_plain;h=df9fdeb9cc6dc68ca1085cc3570785b9787c6023 added user option to support message sort by internal date instead of the original message date git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@2585 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- diff --git a/src/options_display.php b/src/options_display.php index 1a77f630..fd075d54 100644 --- a/src/options_display.php +++ b/src/options_display.php @@ -245,6 +245,12 @@ function load_optpage_data_display() { 'type' => SMOPT_TYPE_BOOLEAN, 'refresh' => SMOPT_REFRESH_NONE ); + $optvals[SMOPT_GRP_MESSAGE][] = array( + 'name' => 'internal_date_sort', + 'caption' => _("Use receive date for sort"), + 'type' => SMOPT_TYPE_BOOLEAN, + 'refresh' => SMOPT_REFRESH_ALL + ); /* Assemble all this together and return it as our result. */ $result = array( 'grps' => $optgrps,