Index: trunk/phase3/includes/api/ApiQueryLangBacklinks.php |
— | — | @@ -79,7 +79,7 @@ |
80 | 80 | } |
81 | 81 | |
82 | 82 | $prop = array_flip( $params['prop'] ); |
83 | | - $lllang = isset( $prop['llang'] ); |
| 83 | + $lllang = isset( $prop['lllang'] ); |
84 | 84 | $lltitle = isset( $prop['lltitle'] ); |
85 | 85 | |
86 | 86 | $this->addTables( array( 'langlinks', 'page' ) ); |
— | — | @@ -157,7 +157,7 @@ |
158 | 158 | |
159 | 159 | public function getAllowedParams() { |
160 | 160 | return array( |
161 | | - 'prefix' => null, |
| 161 | + 'lang' => null, |
162 | 162 | 'title' => null, |
163 | 163 | 'continue' => null, |
164 | 164 | 'limit' => array( |
— | — | @@ -181,7 +181,7 @@ |
182 | 182 | public function getParamDescription() { |
183 | 183 | return array( |
184 | 184 | 'lang' => 'Language for the language link', |
185 | | - 'title' => "Language link to search for. Must be used with {$this->getModulePrefix()}prefix", |
| 185 | + 'title' => "Language link to search for. Must be used with {$this->getModulePrefix()}lang", |
186 | 186 | 'continue' => 'When more results are available, use this to continue', |
187 | 187 | 'prop' => array( |
188 | 188 | 'Which properties to get', |