From 46f213221114e095ccbfbbf6159b17b9aaf9d96e Mon Sep 17 00:00:00 2001 From: umherirrender Date: Sun, 17 Mar 2013 16:29:00 +0100 Subject: [PATCH] Fix type of list=tags&tgcontinue Was already interpretted as string before, but with a default of null, this is easy to read and looks like all other 'continue' param Change-Id: Ica972e927d4949bb0e8925f10471b9273c052011 --- includes/api/ApiQueryTags.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/includes/api/ApiQueryTags.php b/includes/api/ApiQueryTags.php index e0637ff731..22480c62b7 100644 --- a/includes/api/ApiQueryTags.php +++ b/includes/api/ApiQueryTags.php @@ -133,8 +133,7 @@ class ApiQueryTags extends ApiQueryBase { public function getAllowedParams() { return array( - 'continue' => array( - ), + 'continue' => null, 'limit' => array( ApiBase::PARAM_DFLT => 10, ApiBase::PARAM_TYPE => 'limit', -- 2.20.1