Index: branches/REL1_13/phase3/includes/api/ApiQueryUsers.php |
— | — | @@ -100,7 +100,7 @@ |
101 | 101 | if(isset($this->prop['editcount'])) |
102 | 102 | $data[$r->user_name]['editcount'] = $r->user_editcount; |
103 | 103 | if(isset($this->prop['registration'])) |
104 | | - $data[$r->user_name]['registration'] = wfTimestamp(TS_ISO_8601, $r->user_registration); |
| 104 | + $data[$r->user_name]['registration'] = wfTimestampOrNull(TS_ISO_8601, $r->user_registration); |
105 | 105 | if(isset($this->prop['groups'])) |
106 | 106 | // This row contains only one group, others will be added from other rows |
107 | 107 | if(!is_null($r->ug_group)) |
Index: branches/REL1_13/phase3/RELEASE-NOTES |
— | — | @@ -551,6 +551,8 @@ |
552 | 552 | * Added flag "top" to list=usercontribs if the user is the last contributor to |
553 | 553 | the page |
554 | 554 | * list=exturlusage in "list all links" mode can now filter by protocol |
| 555 | +* Registration time of users registered before the DB field was created is now |
| 556 | + shown as empty instead of the current time. |
555 | 557 | |
556 | 558 | === Languages updated in 1.13 === |
557 | 559 | |