Index: trunk/phase3/includes/api/ApiQueryImageInfo.php |
— | — | @@ -198,7 +198,7 @@ |
199 | 199 | $mto = $file->transform( array( 'width' => $scale['width'], 'height' => $scale['height'] ) ); |
200 | 200 | if( $mto && !$mto->isError() ) |
201 | 201 | { |
202 | | - $vals['thumburl'] = $mto->getUrl(); |
| 202 | + $vals['thumburl'] = wfExpandUrl( $mto->getUrl() ); |
203 | 203 | $vals['thumbwidth'] = intval( $mto->getWidth() ); |
204 | 204 | $vals['thumbheight'] = intval( $mto->getHeight() ); |
205 | 205 | } |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -753,6 +753,8 @@ |
754 | 754 | * (bug 21441) meta=userinfo&uiprop=options no longer returns default options |
755 | 755 | for logged-in users under certain circumstances |
756 | 756 | * (bug 21945) Add chomp control in YAML |
| 757 | +* Expand the thumburl to an absolute url to make it consistent with url and |
| 758 | + descriptionurl |
757 | 759 | |
758 | 760 | === Languages updated in 1.16 === |
759 | 761 | |