Przeglądaj źródła

added user option to support message sort by internal date instead of the
original message date

stekkel 23 lat temu
rodzic
commit
f86e610c14
1 zmienionych plików z 6 dodań i 0 usunięć
  1. 6 0
      src/options_display.php

+ 6 - 0
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,