Changeset 6eeb17d in github
- Timestamp:
- May 5, 2006 1:03:39 PM (7 years ago)
- Branches:
- master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.6, release-0.7, release-0.8
- Children:
- 8f4834d
- Parents:
- fd372599
- File:
-
- 1 edited
-
program/lib/imap.inc (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
program/lib/imap.inc
ra4bafb4 r6eeb17d 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.
