Index: trunk/phase3/includes/api/ApiQueryRecentChanges.php |
— | — | @@ -110,7 +110,7 @@ |
111 | 111 | while ($row = $db->fetchObject($res)) { |
112 | 112 | if (++ $count > $limit) { |
113 | 113 | // We've reached the one extra which shows that there are additional pages to be had. Stop here... |
114 | | - $this->setContinueEnumParameter('start', $row->rc_timestamp); |
| 114 | + $this->setContinueEnumParameter('start', wfTimestamp(TS_ISO_8601, $row->rc_timestamp)); |
115 | 115 | break; |
116 | 116 | } |
117 | 117 | |
Index: trunk/phase3/includes/api/ApiQueryWatchlist.php |
— | — | @@ -148,7 +148,7 @@ |
149 | 149 | while ($row = $db->fetchObject($res)) { |
150 | 150 | if (++ $count > $limit) { |
151 | 151 | // We've reached the one extra which shows that there are additional pages to be had. Stop here... |
152 | | - $this->setContinueEnumParameter('start', $row->rc_timestamp); |
| 152 | + $this->setContinueEnumParameter('start', wfTimestamp(TS_ISO_8601, $row->rc_timestamp)); |
153 | 153 | break; |
154 | 154 | } |
155 | 155 | |
Index: trunk/phase3/includes/api/ApiQueryUserContributions.php |
— | — | @@ -75,7 +75,7 @@ |
76 | 76 | while ( $row = $db->fetchObject( $res ) ) { |
77 | 77 | if (++ $count > $limit) { |
78 | 78 | // We've reached the one extra which shows that there are additional pages to be had. Stop here... |
79 | | - $this->setContinueEnumParameter('start', $row->rev_timestamp); |
| 79 | + $this->setContinueEnumParameter('start', wfTimestamp(TS_ISO_8601, $row->rev_timestamp)); |
80 | 80 | break; |
81 | 81 | } |
82 | 82 | |
Index: trunk/phase3/includes/api/ApiQueryLogEvents.php |
— | — | @@ -93,7 +93,7 @@ |
94 | 94 | while ($row = $db->fetchObject($res)) { |
95 | 95 | if (++ $count > $limit) { |
96 | 96 | // We've reached the one extra which shows that there are additional pages to be had. Stop here... |
97 | | - $this->setContinueEnumParameter('start', $row->log_timestamp); |
| 97 | + $this->setContinueEnumParameter('start', wfTimestamp(TS_ISO_8601, $row->log_timestamp)); |
98 | 98 | break; |
99 | 99 | } |
100 | 100 | |