Index: trunk/phase3/includes/SpecialVersion.php |
— | — | @@ -282,7 +282,10 @@ |
283 | 283 | return false; |
284 | 284 | } |
285 | 285 | |
286 | | - $xml = simplexml_load_file( $entries, "SimpleXMLElement", LIBXML_NOWARNING ); |
| 286 | + // SimpleXml whines about the xmlns... |
| 287 | + wfSuppressWarnings(); |
| 288 | + $xml = simplexml_load_file( $entries ); |
| 289 | + wfRestoreWarnings(); |
287 | 290 | |
288 | 291 | if( $xml ) { |
289 | 292 | foreach( $xml->entry as $entry ) { |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -354,6 +354,7 @@ |
355 | 355 | * (bug 9582) Members of bot group now mark edits patrolled by default |
356 | 356 | * (bug 9669) Fix limit ordering for rebuildrecentchanges; broken since |
357 | 357 | converted from 1.4 to 1.5 schema |
| 358 | +* (bug 9682) Revert PHP 5.1 dependency on warning suppression for SVN info |
358 | 359 | |
359 | 360 | |
360 | 361 | == Maintenance == |