Changeset b6b5934 in github
- Timestamp:
- Jul 7, 2009 5:11:21 AM (4 years ago)
- Branches:
- master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.6, release-0.7, release-0.8
- Children:
- d559cba
- Parents:
- 72cd3c1
- Files:
-
- 3 edited
-
CHANGELOG (modified) (1 diff)
-
config/main.inc.php.dist (modified) (1 diff)
-
program/include/main.inc (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
CHANGELOG
r72cd3c1 rb6b5934 2 2 =========================== 3 3 4 - Support strftime's format modifiers in date_* options (#1484806) 4 5 - Support %h variable in 'smtp_server' option (#1485766) 5 6 - Show SMTP errors in browser (#1485927) -
config/main.inc.php.dist
r72cd3c1 rb6b5934 156 156 $rcmail_config['language'] = null; 157 157 158 // use this format for short date display 158 // use this format for short date display (date or strftime format) 159 159 $rcmail_config['date_short'] = 'D H:i'; 160 160 161 // use this format for detailed date/time formatting 161 // use this format for detailed date/time formatting (date or strftime format) 162 162 $rcmail_config['date_long'] = 'd.m.Y H:i'; 163 163 164 // use this format for today's date display 164 // use this format for today's date display (date or strftime format) 165 165 $rcmail_config['date_today'] = 'H:i'; 166 166 -
program/include/main.inc
r4fa127a rb6b5934 894 894 $format = $CONFIG['date_long'] ? $CONFIG['date_long'] : 'd.m.Y H:i'; 895 895 896 // strftime() format 897 if (preg_match('/%[a-z]+/i', $format)) 898 return strftime($format, $timestamp); 896 899 897 900 // parse format string manually in order to provide localized weekday and month names
Note: See TracChangeset
for help on using the changeset viewer.
