| @@ 11520-11523 (lines=4) @@ | ||
| 11517 | } |
|
| 11518 | } |
|
| 11519 | // Character timezone |
|
| 11520 | elseif (isset($this->timezone[strtoupper($match[11])])) |
|
| 11521 | { |
|
| 11522 | $timezone = $this->timezone[strtoupper($match[11])]; |
|
| 11523 | } |
|
| 11524 | // Assume everything else to be -0000 |
|
| 11525 | else |
|
| 11526 | { |
|
| @@ 11584-11592 (lines=9) @@ | ||
| 11581 | // Month |
|
| 11582 | $month = $this->month[strtolower($match[3])]; |
|
| 11583 | // Character timezone |
|
| 11584 | if (isset($this->timezone[strtoupper($match[8])])) |
|
| 11585 | { |
|
| 11586 | $timezone = $this->timezone[strtoupper($match[8])]; |
|
| 11587 | } |
|
| 11588 | // Assume everything else to be -0000 |
|
| 11589 | else |
|
| 11590 | { |
|
| 11591 | $timezone = 0; |
|
| 11592 | } |
|
| 11593 | // Deal with 2 digit year |
|
| 11594 | if ($match[4] < 50) |
|
| 11595 | { |
|