Merge "(bug 44814) Don't double-escape the date header on Special:Notifications"

This commit is contained in:
Bsitu 2013-02-14 18:14:19 +00:00 committed by Gerrit Code Review
commit 5d99d1a258

View file

@ -69,7 +69,7 @@ class SpecialNotifications extends SpecialPage {
// Output the date header if it has not been displayed
if ( $dateHeader !== $row['timestamp']['date'] ) {
$dateHeader = $row['timestamp']['date'];
$notices .= Html::element( 'li', array( 'class' => 'mw-echo-date-section' ), $dateHeader );
$notices .= Html::rawElement( 'li', array( 'class' => 'mw-echo-date-section' ), $dateHeader );
}
$class = 'mw-echo-notification';