From b5df42903d6bb63831c0d241ee8f1fc98428e22b Mon Sep 17 00:00:00 2001 From: Brad Jorsch Date: Sun, 29 Dec 2013 15:08:46 -0500 Subject: [PATCH] Fix more concatenation errors Errors were introduced in I763f79c6 and Id5fd7180. Change-Id: Ieb5189636eb3df54290aaf998834988c81099eb3 --- includes/api/ApiQueryCategoryMembers.php | 4 ++-- includes/api/ApiUnblock.php | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/includes/api/ApiQueryCategoryMembers.php b/includes/api/ApiQueryCategoryMembers.php index e78c57791f..f7bd59a5b5 100644 --- a/includes/api/ApiQueryCategoryMembers.php +++ b/includes/api/ApiQueryCategoryMembers.php @@ -345,8 +345,8 @@ class ApiQueryCategoryMembers extends ApiQueryGeneratorBase { 'dir' => 'In which direction to sort', 'start' => "Timestamp to start listing from. Can only be used with {$p}sort=timestamp", '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", + '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 " . diff --git a/includes/api/ApiUnblock.php b/includes/api/ApiUnblock.php index dabb8dac27..46e2f6e13c 100644 --- a/includes/api/ApiUnblock.php +++ b/includes/api/ApiUnblock.php @@ -98,10 +98,10 @@ class ApiUnblock extends ApiBase { $p = $this->getModulePrefix(); return array( - 'id' => "ID of the block you want to unblock (obtained through list=blocks). ' . - 'Cannot be used together with {$p}user", - 'user' => "Username, IP address or IP range you want to unblock. ' . - 'Cannot be used together with {$p}id", + 'id' => "ID of the block you want to unblock (obtained through list=blocks). " . + "Cannot be used together with {$p}user", + 'user' => "Username, IP address or IP range you want to unblock. " . + "Cannot be used together with {$p}id", 'token' => "An unblock token previously obtained through prop=info", 'reason' => 'Reason for unblock', ); -- 2.20.1