Просмотр исходного кода

documenting sorting options with @since tags

tokul 19 лет назад
Родитель
Сommit
59d01df8b5
1 измененных файлов с 14 добавлено и 8 удалено
  1. 14 8
      config/config_default.php

+ 14 - 8
config/config_default.php

@@ -581,21 +581,27 @@ $hide_auth_header = false;
 /**
  * Server Side Threading Control
  *
- * If you want to disable server side thread sorting options
- * Your IMAP server must support the THREAD extension for
- * this to have any effect.
+ * Set it to true, if you want to disable server side thread 
+ * sorting options. Your IMAP server must support the THREAD 
+ * extension for this to have any effect.
+ * 
+ * Older SquirrelMail versions used $allow_thread_sort option.
  * @global bool $disable_thread_sort
+ * @since 1.5.1
  */
 $disable_thread_sort = false;
 
 /**
  * Server Side Sorting Control
  *
- * If you want to disable server-side sorting and use SM client side sorting
- * instead (client side sorting can be slow).
- * Your IMAP server must support the SORT extension for this
- * to have any effect.
- * @global bool $allow_server_sort
+ * Set it to true, if you want to disable server side sorting 
+ * and use SM client side sorting instead (client side sorting 
+ * can be slow). Your IMAP server must support the SORT extension 
+ * for this to have any effect.
+ * 
+ * Older SquirrelMail versions used $allow_server_sort option.
+ * @global bool $disable_server_sort
+ * @since 1.5.1
  */
 $disable_server_sort = false;