From de3e0fcb3264db1a616c467c00a1bbecfb192a4b Mon Sep 17 00:00:00 2001 From: kink Date: Tue, 26 Apr 2005 21:58:09 +0000 Subject: [PATCH] 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. git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@9397 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- include/load_prefs.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/load_prefs.php b/include/load_prefs.php index a64e3b91..cb637ce4 100644 --- a/include/load_prefs.php +++ b/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'); -?> \ No newline at end of file +?> -- 2.25.1