Index: trunk/phase3/includes/api/ApiQueryPageProps.php |
— | — | @@ -72,7 +72,7 @@ |
73 | 73 | |
74 | 74 | |
75 | 75 | foreach ( $this->everything as $pageid => $title ) { |
76 | | - $pageInfo = $this->extractPageInfo( $pageid, $title, $prop ); |
| 76 | + $pageInfo = $this->extractPageInfo( $pageid, $title, $params['prop'] ); |
77 | 77 | $fit = $result->addValue( array( |
78 | 78 | 'query', |
79 | 79 | 'pages' |
— | — | @@ -121,7 +121,7 @@ |
122 | 122 | return $pageInfo; |
123 | 123 | } |
124 | 124 | |
125 | | - public function getCacheMode() { |
| 125 | + public function getCacheMode( $params ) { |
126 | 126 | return 'public'; |
127 | 127 | } |
128 | 128 | |