From 0363a0cbbd1d72aab1d97361ba7c81aea789c42a Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Thu, 14 Dec 2006 22:30:42 +0000 Subject: [PATCH] XHTML fix in enhanced RC --- includes/ChangesList.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/ChangesList.php b/includes/ChangesList.php index ede27cefb1..a2c1a265e1 100644 --- a/includes/ChangesList.php +++ b/includes/ChangesList.php @@ -344,7 +344,7 @@ class EnhancedChangesList extends ChangesList { $clink = $this->skin->makeKnownLinkObj( $rc->getTitle(), '' ); } - $time = $wgContLang->time( $rc_timestamp, true, true ) . ' '; + $time = $wgContLang->time( $rc_timestamp, true, true ); $rc->watched = $watched; $rc->link = $clink; $rc->timestamp = $time; @@ -457,7 +457,7 @@ class EnhancedChangesList extends ChangesList { $r .= $this->recentChangesFlags( $isnew, false, $unpatrolled, ' ', $bot ); # Timestamp - $r .= ' '.$block[0]->timestamp.' '; + $r .= ' '.$block[0]->timestamp.' '; # Article link $r .= $this->maybeWatchedLink( $block[0]->link, $block[0]->watched ); -- 2.20.1