From 68c05eb16ae0fadac5ed5b90f401287d2443a0d2 Mon Sep 17 00:00:00 2001 From: Aaron Schulz Date: Sat, 8 Nov 2008 19:45:26 +0000 Subject: [PATCH] More space fixes --- includes/PageHistory.php | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/includes/PageHistory.php b/includes/PageHistory.php index c84cecdf1b..628cbb9784 100644 --- a/includes/PageHistory.php +++ b/includes/PageHistory.php @@ -167,10 +167,10 @@ class PageHistory { $encYear = ''; } return Xml::label( wfMsg( 'year' ), 'year' ) . ' '. - Xml::input( 'year', 4, $encYear, array('id' => 'year', 'maxlength' => 4) ) . - ' '. - Xml::label( wfMsg( 'month' ), 'month' ) . ' '. - Xml::monthSelector( $encMonth, -1 ); + Xml::input( 'year', 4, $encYear, array('id' => 'year', 'maxlength' => 4) ) . + ' '. + Xml::label( wfMsg( 'month' ), 'month' ) . ' '. + Xml::monthSelector( $encMonth, -1 ); } /** @@ -542,12 +542,12 @@ class PageHistory { function feedEmpty() { global $wgOut; return new FeedItem( - wfMsgForContent( 'nohistory' ), - $wgOut->parse( wfMsgForContent( 'history-feed-empty' ) ), - $this->mTitle->getFullUrl(), - wfTimestamp( TS_MW ), - '', - $this->mTitle->getTalkPage()->getFullUrl() ); + wfMsgForContent( 'nohistory' ), + $wgOut->parse( wfMsgForContent( 'history-feed-empty' ) ), + $this->mTitle->getFullUrl(), + wfTimestamp( TS_MW ), + '', + $this->mTitle->getTalkPage()->getFullUrl() ); } /** @@ -577,12 +577,12 @@ class PageHistory { } return new FeedItem( - $title, - $text, - $this->mTitle->getFullUrl( 'diff=' . $rev->getId() . '&oldid=prev' ), - $rev->getTimestamp(), - $rev->getUserText(), - $this->mTitle->getTalkPage()->getFullUrl() ); + $title, + $text, + $this->mTitle->getFullUrl( 'diff=' . $rev->getId() . '&oldid=prev' ), + $rev->getTimestamp(), + $rev->getUserText(), + $this->mTitle->getTalkPage()->getFullUrl() ); } /** -- 2.20.1