Shorten long lines in UserRightsProxy.php to make phpcs pass
authorAmir E. Aharoni <amir.aharoni@mail.huji.ac.il>
Tue, 3 Mar 2015 18:29:54 +0000 (20:29 +0200)
committerKrinkle <krinklemail@gmail.com>
Wed, 4 Mar 2015 04:26:47 +0000 (04:26 +0000)
Change-Id: Ib9c2b2ed4bdfe895764a3af6444e48522f4808d7

includes/UserRightsProxy.php

index 3be5847..1b9e4b6 100644 (file)
@@ -114,7 +114,8 @@ class UserRightsProxy {
         */
        private static function newFromLookup( $database, $field, $value, $ignoreInvalidDB = false ) {
                global $wgSharedDB, $wgSharedTables;
-               // If the user table is shared, perform the user query on it, but don't pass it to the UserRightsProxy,
+               // If the user table is shared, perform the user query on it,
+               // but don't pass it to the UserRightsProxy,
                // as user rights are normally not shared.
                if ( $wgSharedDB && in_array( 'user', $wgSharedTables ) ) {
                        $userdb = self::getDB( $wgSharedDB, $ignoreInvalidDB );