From: Brad Jorsch Date: Sun, 29 Dec 2013 20:08:46 +0000 (-0500) Subject: Fix more concatenation errors X-Git-Tag: 1.31.0-rc.0~17465 X-Git-Url: http://git.cyclocoop.org/%22.%28%24lien.?a=commitdiff_plain;h=b5df42903d6bb63831c0d241ee8f1fc98428e22b;p=lhc%2Fweb%2Fwiklou.git Fix more concatenation errors Errors were introduced in I763f79c6 and Id5fd7180. Change-Id: Ieb5189636eb3df54290aaf998834988c81099eb3 --- 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', );