Index: trunk/phase3/includes/api/ApiQueryUsers.php |
— | — | @@ -36,7 +36,7 @@ |
37 | 37 | */ |
38 | 38 | class ApiQueryUsers extends ApiQueryBase { |
39 | 39 | |
40 | | - private $tokenFunctions; |
| 40 | + private $tokenFunctions, $prop; |
41 | 41 | |
42 | 42 | public function __construct( $query, $moduleName ) { |
43 | 43 | parent::__construct( $query, $moduleName, 'us' ); |
— | — | @@ -46,7 +46,7 @@ |
47 | 47 | * Get an array mapping token names to their handler functions. |
48 | 48 | * The prototype for a token function is func($user) |
49 | 49 | * it should return a token or false (permission denied) |
50 | | - * @return array(tokenname => function) |
| 50 | + * @return Array tokenname => function |
51 | 51 | */ |
52 | 52 | protected function getTokenFunctions() { |
53 | 53 | // Don't call the hooks twice |