diff options
author | Pierre Schmitz <pierre@archlinux.de> | 2013-12-08 09:55:49 +0100 |
---|---|---|
committer | Pierre Schmitz <pierre@archlinux.de> | 2013-12-08 09:55:49 +0100 |
commit | 4ac9fa081a7c045f6a9f1cfc529d82423f485b2e (patch) | |
tree | af68743f2f4a47d13f2b0eb05f5c4aaf86d8ea37 /includes/RevisionList.php | |
parent | af4da56f1ad4d3ef7b06557bae365da2ea27a897 (diff) |
Update to MediaWiki 1.22.0
Diffstat (limited to 'includes/RevisionList.php')
-rw-r--r-- | includes/RevisionList.php | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/includes/RevisionList.php b/includes/RevisionList.php index d87c540f..1b865bb0 100644 --- a/includes/RevisionList.php +++ b/includes/RevisionList.php @@ -105,7 +105,7 @@ abstract class RevisionListBase extends ContextSource { * @return int */ public function length() { - if( !$this->res ) { + if ( !$this->res ) { return 0; } else { return $this->res->numRows(); @@ -352,8 +352,7 @@ class RevisionItem extends RevisionItemBase { if ( $this->isDeleted() && !$this->canViewContent() ) { return $this->context->msg( 'diff' )->escaped(); } else { - return - Linker::link( + return Linker::link( $this->list->title, $this->context->msg( 'diff' )->escaped(), array(), |