X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=includes%2Fapi%2FApiQueryImageInfo.php;h=b2664dff1efdfccf898bcbe4dd89f2990c9d6e02;hb=0e25b050286bed143ed5a23e87d5543fe71ce5dd;hp=c9dae8de92ce2d7c1e95ad3c316ad824016996b0;hpb=f3ecd4855cebb001ca96efe9d55fdf03fc9a7277;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/api/ApiQueryImageInfo.php b/includes/api/ApiQueryImageInfo.php index c9dae8de92..b2664dff1e 100644 --- a/includes/api/ApiQueryImageInfo.php +++ b/includes/api/ApiQueryImageInfo.php @@ -509,7 +509,7 @@ class ApiQueryImageInfo extends ApiQueryBase { if ( $mto && !$mto->isError() ) { $vals['thumburl'] = wfExpandUrl( $mto->getUrl(), PROTO_CURRENT ); - // bug 23834 - If the URL's are the same, we haven't resized it, so shouldn't give the wanted + // T25834 - If the URLs are the same, we haven't resized it, so shouldn't give the wanted // thumbnail sizes for the thumbnail actual size if ( $mto->getUrl() !== $file->getUrl() ) { $vals['thumbwidth'] = intval( $mto->getWidth() ); @@ -821,6 +821,6 @@ class ApiQueryImageInfo extends ApiQueryBase { } public function getHelpUrls() { - return 'https://www.mediawiki.org/wiki/API:Imageinfo'; + return 'https://www.mediawiki.org/wiki/Special:MyLanguage/API:Imageinfo'; } }