Open GoogleCodeExporter opened 8 years ago
To fix this problem at the source, change the following line (lines 31-32):
list( $year, $month, $day, $hours, $minutes, $seconds) =
array( $match[1], $match[3], $match[5], $match[7], $match[8], $match[9]);
To the corrected:
list( $year, $month, $day, $hours, $minutes, $seconds) =
array( $match[1], $match[3], $match[5], $match[7], $match[8], $match[10]);
Hope this helps.
Original comment by thech...@gmail.com
on 31 Jan 2007 at 10:44
Here is the corrected regex that will fix this problem.
$pat =
"/(\d{4})-(\d{2})-(\d{2})T(\d{2}):(\d{2}):((\d{2}))?(:?([-+])(\d{2}):?(\d{2})|(Z
))?/";
Original comment by valinor...@gmail.com
on 6 Jul 2007 at 10:10
Original issue reported on code.google.com by
earom...@gmail.com
on 6 Jan 2007 at 5:36