From: pdontthink Date: Thu, 3 Mar 2005 20:20:24 +0000 (+0000) Subject: use constant instead of integer for hour format pref default X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=4eefb12fa341803111dd6b7c5a2bc56f9d479027;p=squirrelmail.git use constant instead of integer for hour format pref default git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@8935 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- diff --git a/include/load_prefs.php b/include/load_prefs.php index b1dca886..a55aaf24 100644 --- a/include/load_prefs.php +++ b/include/load_prefs.php @@ -245,7 +245,7 @@ $page_selector_max = getPref($data_dir, $username, 'page_selector_max', 10); /* SqClock now in the core */ $date_format = getPref($data_dir, $username, 'date_format', 3); -$hour_format = getPref($data_dir, $username, 'hour_format', 2); +$hour_format = getPref($data_dir, $username, 'hour_format', SMPREF_TIME_12HR); /* compose in new window setting */ $compose_new_win = getPref($data_dir, $username, 'compose_new_win', 0);