From: Aaron Schulz Date: Sat, 8 Nov 2008 19:45:26 +0000 (+0000) Subject: More space fixes X-Git-Tag: 1.31.0-rc.0~44398 X-Git-Url: http://git.cyclocoop.org//%27%40script%40/%27?a=commitdiff_plain;h=68c05eb16ae0fadac5ed5b90f401287d2443a0d2;p=lhc%2Fweb%2Fwiklou.git More space fixes --- 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() ); } /**