From 09a060713919e1a03d5ba49f802ea8ab99ab0c23 Mon Sep 17 00:00:00 2001 From: aude Date: Sun, 29 Dec 2013 18:40:14 +0100 Subject: [PATCH] Fix string concatenation in api documentation Change-Id: I4f94172a5e4ad43dd88c21e01148fd94783aca54 --- includes/api/ApiQueryCategoryMembers.php | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/includes/api/ApiQueryCategoryMembers.php b/includes/api/ApiQueryCategoryMembers.php index 271558b27d..e78c57791f 100644 --- a/includes/api/ApiQueryCategoryMembers.php +++ b/includes/api/ApiQueryCategoryMembers.php @@ -326,8 +326,8 @@ class ApiQueryCategoryMembers extends ApiQueryGeneratorBase { global $wgMiserMode; $p = $this->getModulePrefix(); $desc = array( - 'title' => "Which category to enumerate (required). Must include ' . - 'Category: prefix. Cannot be used together with {$p}pageid", + 'title' => "Which category to enumerate (required). Must include " . + "'Category:' prefix. Cannot be used together with {$p}pageid", 'pageid' => "Page ID of the category to enumerate. Cannot be used together with {$p}title", 'prop' => array( 'What pieces of information to include', @@ -347,13 +347,13 @@ class ApiQueryCategoryMembers extends ApiQueryGeneratorBase { 'end' => "Timestamp to end listing at. Can only be used with {$p}sort=timestamp", 'startsortkey' => "Sortkey to start listing from. Must be given in ' . 'binary format. Can only be used with {$p}sort=sortkey", - 'endsortkey' => "Sortkey to end listing at. Must be given in binary ' . - 'format. Can only be used with {$p}sort=sortkey", - 'startsortkeyprefix' => "Sortkey prefix to start listing from. Can ' . - 'only be used with {$p}sort=sortkey. Overrides {$p}startsortkey", - 'endsortkeyprefix' => "Sortkey prefix to end listing BEFORE (not at, ' . - 'if this value occurs it will not be included!). Can only be used with ' . - '{$p}sort=sortkey. Overrides {$p}endsortkey", + 'endsortkey' => "Sortkey to end listing at. Must be given in binary " . + "format. Can only be used with {$p}sort=sortkey", + 'startsortkeyprefix' => "Sortkey prefix to start listing from. Can " . + "only be used with {$p}sort=sortkey. Overrides {$p}startsortkey", + 'endsortkeyprefix' => "Sortkey prefix to end listing BEFORE (not at, " . + "if this value occurs it will not be included!). Can only be used with " . + "{$p}sort=sortkey. Overrides {$p}endsortkey", 'continue' => 'For large categories, give the value returned from previous query', 'limit' => 'The maximum number of pages to return.', ); -- 2.20.1