Index: trunk/phase3/includes/api/ApiQueryPageProps.php |
— | — | @@ -112,7 +112,7 @@ |
113 | 113 | * @return bool True if it fits in the result |
114 | 114 | */ |
115 | 115 | private function addPageProps( $result, $page, $props ) { |
116 | | - $fit = $result->addValue( array( 'query', 'pages' ), $page, $props ); |
| 116 | + $fit = $result->addValue( array( 'query', 'pages', $page ), 'pageprops', $props ); |
117 | 117 | |
118 | 118 | if ( !$fit ) { |
119 | 119 | $this->setContinueEnumParameter( 'continue', $page ); |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -173,6 +173,8 @@ |
174 | 174 | * (bug 27199) Thumbnail urls can be fetched for old files as well |
175 | 175 | * (bug 27376) when using ApiBase::PARAM_TYPE => 'integer' without a min or |
176 | 176 | max value, api doesn't validate the input is actually an integer |
| 177 | +* (bug 27479) API error when using both prop=pageprops and |
| 178 | + prop=info&inprop=displaytitle |
177 | 179 | |
178 | 180 | === Languages updated in 1.18 === |
179 | 181 | |