From 9db190c7e736ec8d063187d4241b59feaf7dc2d1 Mon Sep 17 00:00:00 2001 From: Pierre Schmitz Date: Wed, 22 Jun 2011 11:28:20 +0200 Subject: update to MediaWiki 1.17.0 --- includes/FeedUtils.php | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'includes/FeedUtils.php') diff --git a/includes/FeedUtils.php b/includes/FeedUtils.php index 7e841f32..9daffc12 100644 --- a/includes/FeedUtils.php +++ b/includes/FeedUtils.php @@ -86,7 +86,7 @@ class FeedUtils { * @return String */ public static function formatDiffRow( $title, $oldid, $newid, $timestamp, $comment, $actiontext='' ) { - global $wgFeedDiffCutoff, $wgContLang, $wgUser; + global $wgFeedDiffCutoff, $wgLang, $wgUser; wfProfileIn( __METHOD__ ); $skin = $wgUser->getSkin(); @@ -108,9 +108,9 @@ class FeedUtils { wfProfileIn( __METHOD__."-dodiff" ); #$diffText = $de->getDiff( wfMsg( 'revisionasof', - # $wgContLang->timeanddate( $timestamp ), - # $wgContLang->date( $timestamp ), - # $wgContLang->time( $timestamp ) ), + # $wgLang->timeanddate( $timestamp ), + # $wgLang->date( $timestamp ), + # $wgLang->time( $timestamp ) ), # wfMsg( 'currentrev' ) ); // Don't bother generating the diff if we won't be able to show it @@ -119,12 +119,12 @@ class FeedUtils { $diffText = $de->getDiff( wfMsg( 'previousrevision' ), // hack wfMsg( 'revisionasof', - $wgContLang->timeanddate( $timestamp ), - $wgContLang->date( $timestamp ), - $wgContLang->time( $timestamp ) ) ); + $wgLang->timeanddate( $timestamp ), + $wgLang->date( $timestamp ), + $wgLang->time( $timestamp ) ) ); } - if ( ( strlen( $diffText ) > $wgFeedDiffCutoff ) || ( $wgFeedDiffCutoff <= 0 ) ) { + if ( $wgFeedDiffCutoff <= 0 || ( strlen( $diffText ) > $wgFeedDiffCutoff ) ) { // Omit large diffs $diffLink = $title->escapeFullUrl( 'diff=' . $newid . -- cgit v1.2.3-54-g00ecf