From ba71320cfec1d7cfc0c8da6f40b5d7eacf697d1e Mon Sep 17 00:00:00 2001 From: =?utf8?q?Niklas=20Laxstr=C3=B6m?= Date: Tue, 8 Apr 2008 07:26:35 +0000 Subject: [PATCH] * Add a class for styling --- includes/LogEventsList.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 ) { -- 2.20.1