From: umherirrender Date: Sun, 17 Mar 2013 15:29:00 +0000 (+0100) Subject: Fix type of list=tags&tgcontinue X-Git-Tag: 1.31.0-rc.0~20294^2 X-Git-Url: http://git.cyclocoop.org/%22.%24match%5B1%5D.%22?a=commitdiff_plain;h=46f213221114e095ccbfbbf6159b17b9aaf9d96e;p=lhc%2Fweb%2Fwiklou.git 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 --- 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',