Index: trunk/phase3/includes/FileDeleteForm.php |
— | — | @@ -77,7 +77,7 @@ |
78 | 78 | if( $status->ok ) { |
79 | 79 | // Need to do a log item |
80 | 80 | $log = new LogPage( 'delete' ); |
81 | | - $logComment = wfMsg( 'deletedrevision', $this->oldimage ); |
| 81 | + $logComment = wfMsgForContent( 'deletedrevision', $this->oldimage ); |
82 | 82 | if( trim( $reason ) != '' ) |
83 | 83 | $logComment .= ": {$reason}"; |
84 | 84 | $log->addEntry( 'delete', $this->title, $logComment ); |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -368,6 +368,8 @@ |
369 | 369 | * (bug 12660) When creating an account by e-mail, do not send the creator's IP |
370 | 370 | address |
371 | 371 | * (bug 12931) Fix wrong global variable in SpecialVersion |
| 372 | +* (bug 12919) Use 'deletedrevision' message as content when deleting an old file |
| 373 | + version |
372 | 374 | |
373 | 375 | == Parser changes in 1.12 == |
374 | 376 | |