Changeset 3918 in subversion
- Timestamp:
- Aug 29, 2010 3:06:20 AM (3 years ago)
- Location:
- trunk/roundcubemail
- Files:
-
- 2 edited
-
CHANGELOG (modified) (1 diff)
-
program/steps/mail/func.inc (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/roundcubemail/CHANGELOG
r3917 r3918 16 16 - Display inline images with known extensions and non-image content-type (#1486934) 17 17 - Fix "Threaded" checkbox after subfolder creation (#1486928) 18 - Fix timezone string in sent mail (#1486961) 18 19 19 20 RELEASE 0.4 -
trunk/roundcubemail/program/steps/mail/func.inc
r3916 r3918 1603 1603 $date = time() + $tz * 60 * 60; 1604 1604 $date = gmdate('r', $date); 1605 $date = preg_replace('/[+-][0-9]{4}$/', sprintf('%+05d', $tz * 100), $date); 1605 $tz = sprintf('%+05d', intval($tz) * 100 + ($tz - intval($tz)) * 60); 1606 $date = preg_replace('/[+-][0-9]{4}$/', $tz, $date); 1606 1607 1607 1608 return $date;
Note: See TracChangeset
for help on using the changeset viewer.
