Posted by clemens.tolboom on May 30, 2008 at 3:09pm
Jump to:
| Project: | Drupal core |
| Version: | 5.x-dev |
| Component: | other |
| Category: | bug report |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | closed (fixed) |
Issue Summary
The function xmlrpc_date($time) in xmlrpc.inc drops the second and only stores the 10s as seconds.
Error is in $xmlrpc_date->second = substr($time, 14, 2);
Should be in $xmlrpc_date->second = substr($time, 13, 2);
minutes are on position 11 and 12 so seconds are on position 13 and 14
Patch included.
| Attachment | Size | Status | Test result | Operations |
|---|---|---|---|---|
| xmlrpc.patch | 508 bytes | Ignored: Check issue status. | None | None |
Comments
#1
This bug is already fixed in D6 and D7.
#2
Committed to 5.x.
#3
Automatically closed -- issue fixed for two weeks with no activity.