Index: trunk/phase3/includes/RecentChange.php |
— | — | @@ -524,7 +524,6 @@ |
525 | 525 | $this->mAttribs = get_object_vars( $row ); |
526 | 526 | $this->mAttribs['rc_timestamp'] = wfTimestamp(TS_MW, $this->mAttribs['rc_timestamp']); |
527 | 527 | $this->mAttribs['rc_deleted'] = $row->rc_deleted; // MUST be set |
528 | | - $this->mExtra = array(); |
529 | 528 | } |
530 | 529 | |
531 | 530 | # Makes a pseudo-RC entry from a cur row |
— | — | @@ -557,7 +556,6 @@ |
558 | 557 | 'rc_log_id' => isset($row->rc_log_id) ? $row->rc_log_id: 0, |
559 | 558 | 'rc_deleted' => $row->rc_deleted // MUST be set |
560 | 559 | ); |
561 | | - $this->mExtra = array(); |
562 | 560 | } |
563 | 561 | |
564 | 562 | /** |