Index: trunk/phase3/includes/LogPage.php |
— | — | @@ -247,7 +247,7 @@ |
248 | 248 | $details .= ': '.RevisionDeleter::getLogMessage( $count, $nfield, $ofield, true ); |
249 | 249 | } |
250 | 250 | if ( $skin ) { |
251 | | - $rv = htmlspecialchars( wfMsg( $wgLogActions[$key], $params ) ) . $details; |
| 251 | + $rv = wfMsgHtml( $wgLogActions[$key], $params ) . $details; |
252 | 252 | } else { |
253 | 253 | $rv = wfMsgExt( $wgLogActions[$key], array( 'parsemag', 'escape', 'replaceafter', 'content' ), $params ) . $details; |
254 | 254 | } |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -306,6 +306,7 @@ |
307 | 307 | users who can't edit them |
308 | 308 | * (bug 15745) The edit summary link parser now handles mismatched brackets |
309 | 309 | better |
| 310 | +* (bug 19839) Comments in log items are no more double escaped |
310 | 311 | |
311 | 312 | == API changes in 1.16 == |
312 | 313 | |