From: Niklas Laxström Date: Tue, 8 Apr 2008 07:26:35 +0000 (+0000) Subject: * Add a class for styling X-Git-Tag: 1.31.0-rc.0~48544 X-Git-Url: http://git.cyclocoop.org/fichier?a=commitdiff_plain;h=ba71320cfec1d7cfc0c8da6f40b5d7eacf697d1e;p=lhc%2Fweb%2Fwiklou.git * Add a class for styling --- diff --git a/includes/LogEventsList.php b/includes/LogEventsList.php index 54ee58d8a4..715d894d9a 100644 --- a/includes/LogEventsList.php +++ b/includes/LogEventsList.php @@ -269,7 +269,7 @@ class LogEventsList { if ( $wgDateGroupedLogs ) { $time = $wgLang->time( wfTimestamp(TS_MW, $row->log_timestamp), true ); $date = $wgLang->date( wfTimestamp(TS_MW, $row->log_timestamp), true ); - $line = Xml::tags('div', null, "$del$time $userLink $action $comment $revert" ); + $line = Xml::tags('div', array( 'class' => 'mw-log-entry' ), "$del$time $userLink $action $comment $revert" ); static $lastdate = false; if ( $date !== $lastdate ) {