From: jmunro Date: Wed, 13 Mar 2002 23:49:33 +0000 (+0000) Subject: fix for bug #529576 X-Git-Url: https://vcs.fsf.org/?p=squirrelmail.git;a=commitdiff_plain;h=e02e27fdbef2c834c552c10510de801d6a2e5007 fix for bug #529576 git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@2578 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- diff --git a/src/load_prefs.php b/src/load_prefs.php index ad782d49..eedc53b7 100644 --- a/src/load_prefs.php +++ b/src/load_prefs.php @@ -142,7 +142,10 @@ $reply_citation_style = $reply_citation_start = getPref($data_dir, $username, 'reply_citation_start'); $reply_citation_end = getPref($data_dir, $username, 'reply_citation_end'); +/* left refresh rate, strtolower makes 1.0.6 prefs compatible */ $left_refresh = getPref($data_dir, $username, 'left_refresh', SMPREF_NONE ); +$left_refresh = strtolower($left_refresh); + $sort = getPref($data_dir, $username, 'sort', 6 ); /** Load up the Signature file **/