فهرست منبع

Set default for Reply Citation Style to 'date_time_author' instead of none.
It's better netiquette to quote with an attribution line so we should add
one by default.

Thijs Kinkhorst 20 سال پیش
والد
کامیت
b4c345d5ec
1فایلهای تغییر یافته به همراه2 افزوده شده و 2 حذف شده
  1. 2 2
      include/load_prefs.php

+ 2 - 2
include/load_prefs.php

@@ -156,7 +156,7 @@ $timezone = getPref($data_dir, $username, 'timezone', SMPREF_NONE );
 /* Load preferences for reply citation style. */
 
 $reply_citation_style =
-    getPref($data_dir, $username, 'reply_citation_style', SMPREF_NONE );
+    getPref($data_dir, $username, 'reply_citation_style', 'date_time_author' );
 $reply_citation_start = getPref($data_dir, $username, 'reply_citation_start');
 $reply_citation_end = getPref($data_dir, $username, 'reply_citation_end');
 
@@ -362,4 +362,4 @@ $iframe_height = getPref($data_dir, $username, 'iframe_height', '300');
 
 do_hook('loading_prefs');
 
-?>
+?>