Changeset 222 in subversion
- Timestamp:
- May 5, 2006 1:03:39 PM (7 years ago)
- File:
-
- 1 edited
-
trunk/roundcubemail/program/lib/imap.inc (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/roundcubemail/program/lib/imap.inc
r204 r222 44 44 - Added patch to iil_C_Sort() enabling UID SORT commands 45 45 - Added function iil_C_ID2UID() 46 - Casting date parts in iil_StrToTime() to avoid mktime() warnings 46 47 - Removed some debuggers (echo ...) 47 48 … … 615 616 $month=$IMAP_MONTHS[$month_str]; 616 617 $day=(int)$a[0]; 617 $year= $a[2];618 $year=(int)$a[2]; 618 619 $time=$a[3]; 619 620 $tz_str = $a[4]; 620 621 $tz = substr($tz_str, 0, 3); 621 $ta =explode(":",$time);622 $ta = explode(":",$time); 622 623 $hour=(int)$ta[0]-(int)$tz; 623 $minute= $ta[1];624 $second= $ta[2];624 $minute=(int)$ta[1]; 625 $second=(int)$ta[2]; 625 626 626 627 //make UNIX timestamp
Note: See TracChangeset
for help on using the changeset viewer.
