From 00dfa0d781059e02b4993b99de4faaedc8687cb9 Mon Sep 17 00:00:00 2001 From: Brian Wolff Date: Wed, 19 Dec 2012 18:59:47 -0400 Subject: [PATCH] (bug 37195) Doc fix. $from and $until are arrays since 1.17. This makes $from and $until of the constructor be documented as arrays instead of strings. It also changes the default to be an empty array instead of the empty string. In theory this could use some back-compat code, but the change was made way back in 1.17 so I don't think there's a point. Change-Id: I6f995ea925960b90bc4a458db5af4f7aa768c1ae --- includes/CategoryViewer.php | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/includes/CategoryViewer.php b/includes/CategoryViewer.php index b59b4e1afe..b3741f8a77 100644 --- a/includes/CategoryViewer.php +++ b/includes/CategoryViewer.php @@ -71,11 +71,12 @@ class CategoryViewer extends ContextSource { * @since 1.19 $context is a second, required parameter * @param $title Title * @param $context IContextSource - * @param $from String - * @param $until String + * @param $from Array An array with keys page, subcat, + * and file for offset of results of each section (since 1.17) + * @param $until Array An array with 3 keys for until of each section (since 1.17) * @param $query Array */ - function __construct( $title, IContextSource $context, $from = '', $until = '', $query = array() ) { + function __construct( $title, IContextSource $context, $from = array(), $until = array(), $query = array() ) { global $wgCategoryPagingLimit; $this->title = $title; $this->setContext( $context ); -- 2.20.1