Index: trunk/phase3/includes/SpecialUndelete.php |
— | — | @@ -139,7 +139,9 @@ |
140 | 140 | return new Revision( array( |
141 | 141 | 'page' => $this->title->getArticleId(), |
142 | 142 | 'id' => $row->ar_rev_id, |
143 | | - 'text' => ($row->ar_text_id ? null : $row->ar_text), |
| 143 | + 'text' => ($row->ar_text_id |
| 144 | + ? null |
| 145 | + : Revision::getRevisionText( $row, 'ar_' ) ), |
144 | 146 | 'comment' => $row->ar_comment, |
145 | 147 | 'user' => $row->ar_user, |
146 | 148 | 'user_text' => $row->ar_user_text, |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -157,7 +157,10 @@ |
158 | 158 | recently used IP of a user when they are blocked. |
159 | 159 | * Add an index on (rc_user_text,rc_timestamp) on the recentchanges table. This will |
160 | 160 | make CheckUser.php and the new retroactive autoblock functionality faster. |
| 161 | +* Fix regression in Special:Undelete for revisions deleted under MediaWiki 1.4 |
| 162 | + with compression or legacy encoding |
161 | 163 | |
| 164 | + |
162 | 165 | == Languages updated == |
163 | 166 | |
164 | 167 | * Bishnupriya Manipuri (bpy) |