From: Tim Starling Date: Thu, 27 Aug 2009 15:02:00 +0000 (+0000) Subject: Fixed bug with MW 1.4 style archive rows, with ar_text set: ar_flags can be gzip... X-Git-Tag: 1.31.0-rc.0~40032 X-Git-Url: http://git.cyclocoop.org/%28%5B%5E/404?a=commitdiff_plain;h=94b11fbee401861e37ac8a0fa629606389f804b6;p=lhc%2Fweb%2Fwiklou.git Fixed bug with MW 1.4 style archive rows, with ar_text set: ar_flags can be gzip. Reported by email. --- diff --git a/includes/Revision.php b/includes/Revision.php index 308df6fbf0..8ef33938bd 100644 --- a/includes/Revision.php +++ b/includes/Revision.php @@ -86,7 +86,7 @@ class Revision { 'len' => $row->ar_len); if ( isset( $row->ar_text ) && !$row->ar_text_id ) { // Pre-1.5 ar_text row - $attribs['text'] = $row->ar_text; + $attribs['text'] = self::getRevisionText( $row, 'ar_' ); } return new self( $attribs ); }