r55626 MediaWiki - Code Review archive
Repository:
MediaWiki
Revision:
<
r55625
|
r55626
|
r55627
>
Date:
15:02, 27 August 2009
Author:
tstarling
Status:
ok
Tags:
Comment:
Fixed bug with MW 1.4 style archive rows, with ar_text set: ar_flags can be gzip. Reported by email.
Modified paths:
/trunk/phase3/includes/Revision.php
(modified) (
history
)
Diff
[
purge
]
Index: trunk/phase3/includes/Revision.php
—
—
@@ -86,7 +86,7 @@
87
87
'len' => $row->ar_len);
88
88
if ( isset( $row->ar_text ) && !$row->ar_text_id ) {
89
89
// Pre-1.5 ar_text row
90
- $attribs['text'] = $row->ar_text;
90
+ $attribs['text'] = self::getRevisionText( $row, 'ar_' );
91
91
}
92
92
return new self( $attribs );
93
93
}
Follow-up revisions
Revision
Commit summary
Author
Date
r55628
Merging
r55626
from trunk to wmf-deployment
tstarling
15:32, 27 August 2009
Status & tagging log
16:22, 27 August 2009
Brion VIBBER
(
talk
|
contribs
)
changed the
status
of r55626
[
removed:
new
added:
ok]