Index: trunk/phase3/includes/filerepo/ForeignAPIRepo.php |
— | — | @@ -200,7 +200,7 @@ |
201 | 201 | return $this->getThumbUrl( $name, $width, $height ); |
202 | 202 | } |
203 | 203 | |
204 | | - $key = $this->getLocalCacheKey( 'ForeignAPIRepo', 'ThumbUrl', $name ); |
| 204 | + $key = $this->getLocalCacheKey( 'ForeignAPIRepo', 'ThumbUrl', $name, $width ); |
205 | 205 | $thumbUrl = $wgMemc->get($key); |
206 | 206 | if ( $thumbUrl ) { |
207 | 207 | wfDebug("Got thumb from local cache. $thumbUrl \n"); |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -396,6 +396,7 @@ |
397 | 397 | * (bug 16902) Installer spews warnings when exec() and dl() are not available |
398 | 398 | * (bug 19129) Only show MyISAM/InnoDB when supported |
399 | 399 | * (bug 17762) Only show other e-mail options when e-mail is globally enabled |
| 400 | +* Cache multiple sizes of InstantCommons thumbnails |
400 | 401 | |
401 | 402 | === API changes in 1.17 === |
402 | 403 | * (bug 22738) Allow filtering by action type on query=logevent. |