From ec35a2b39f75dbfb0422680619dcb6e4d05daf80 Mon Sep 17 00:00:00 2001 From: Sam Reed Date: Sun, 5 Dec 2010 16:08:12 +0000 Subject: [PATCH] Change some member calls to static, from r75709 --- includes/CategoryPage.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/CategoryPage.php b/includes/CategoryPage.php index 682dda3360..0ee9dba020 100644 --- a/includes/CategoryPage.php +++ b/includes/CategoryPage.php @@ -422,10 +422,10 @@ class CategoryViewer { */ function formatList( $articles, $articles_start_char, $cutoff = 6 ) { if ( count ( $articles ) > $cutoff ) { - return $this->columnList( $articles, $articles_start_char ); + return self::columnList( $articles, $articles_start_char ); } elseif ( count( $articles ) > 0 ) { // for short lists of articles in categories. - return $this->shortList( $articles, $articles_start_char ); + return self::shortList( $articles, $articles_start_char ); } return ''; } -- 2.20.1