https://issues.apache.org/bugzilla/show_bug.cgi?id=51039
--- Comment #1 from Florian Barbera Vila Bollain <[email protected]> 2011-04-19 22:30:10 EDT --- Created an attachment (id=26909) --> (https://issues.apache.org/bugzilla/attachment.cgi?id=26909) I propose a patch. I tested it in our soft. It seems to be OK. I just replace : if (zoneOffsetHours < 10) { sb.append('0'); } By if (Math.abs(zoneOffsetHours) < 10) { sb.append('0'); } -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
