From: Siebrand Mazeland Date: Sun, 17 Nov 2013 19:25:44 +0000 (+0100) Subject: Update indentation in ApiUserrights::execute() X-Git-Tag: 1.31.0-rc.0~18076 X-Git-Url: http://git.cyclocoop.org/%22.%24redirect_annul.%22?a=commitdiff_plain;h=6f9c0c551f3c6c8d7dbf32759bb0f34f9b8468b0;p=lhc%2Fweb%2Fwiklou.git Update indentation in ApiUserrights::execute() The previous formatting was inconsistent. Change-Id: I22d7cba00cd39df7069b47f78ca130e3e031ceb4 --- diff --git a/includes/api/ApiUserrights.php b/includes/api/ApiUserrights.php index 4664e1ea84..be98a21c2b 100644 --- a/includes/api/ApiUserrights.php +++ b/includes/api/ApiUserrights.php @@ -41,10 +41,10 @@ class ApiUserrights extends ApiBase { $form->setContext( $this->getContext() ); $r['user'] = $user->getName(); $r['userid'] = $user->getId(); - list( $r['added'], $r['removed'] ) = - $form->doSaveUserGroups( - $user, (array)$params['add'], - (array)$params['remove'], $params['reason'] ); + list( $r['added'], $r['removed'] ) = $form->doSaveUserGroups( + $user, (array)$params['add'], + (array)$params['remove'], $params['reason'] + ); $result = $this->getResult(); $result->setIndexedTagName( $r['added'], 'group' );