Index: trunk/phase3/includes/Revision.php |
— | — | @@ -501,7 +501,7 @@ |
502 | 502 | /** |
503 | 503 | * Get parent revision ID (the original previous page revision) |
504 | 504 | * |
505 | | - * @return Integer |
| 505 | + * @return Integer|null |
506 | 506 | */ |
507 | 507 | public function getParentId() { |
508 | 508 | return $this->mParentId; |
Index: trunk/phase3/includes/WikiPage.php |
— | — | @@ -445,6 +445,7 @@ |
446 | 446 | if ( !$this->mTimestamp ) { |
447 | 447 | $this->loadLastEdit(); |
448 | 448 | } |
| 449 | + |
449 | 450 | return wfTimestamp( TS_MW, $this->mTimestamp ); |
450 | 451 | } |
451 | 452 | |