Index: trunk/phase3/CREDITS |
— | — | @@ -83,6 +83,7 @@ |
84 | 84 | * Mormegil |
85 | 85 | * Nakon |
86 | 86 | * Nathan Larson |
| 87 | +* nephele |
87 | 88 | * Nikolaos S. Karastathis |
88 | 89 | * Olaf Lenz |
89 | 90 | * Paul Copperman |
Index: trunk/phase3/includes/ImagePage.php |
— | — | @@ -697,7 +697,10 @@ |
698 | 698 | $this->img->upgradeRow(); |
699 | 699 | $this->img->purgeCache(); |
700 | 700 | } else { |
701 | | - wfDebug( "ImagePage::doPurge no image\n" ); |
| 701 | + wfDebug( "ImagePage::doPurge no image for " . $this->img->getName() . "; limiting purge to cache only\n" ); |
| 702 | + // even if the file supposedly doesn't exist, force any cached information |
| 703 | + // to be updated (in case the cached information is wrong) |
| 704 | + $this->img->purgeCache(); |
702 | 705 | } |
703 | 706 | parent::doPurge(); |
704 | 707 | } |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -360,12 +360,13 @@ |
361 | 361 | revisions when --delete is not passed |
362 | 362 | * (bug 13172) GPS coordinates in image Exif data are now actually displayed |
363 | 363 | * Overhaul of preferences system, includes the following bug fixes: |
364 | | - * (bug 5363) Changes to default preferences now impact registered users. |
365 | | - * (bug 14806) Hook to enable putting preferences in existing tabs. |
366 | | - * (bug 17191) Registration date now listed on preferences page. |
367 | | - * Note that this change will break some extensions which have not been adapted |
368 | | - for it. |
369 | | -* (bug 17020) Adding fallback encodings for Traditional and Simplified Chinese languages while the the text is typed as URLs. |
| 364 | +* (bug 5363) Changes to default preferences now impact registered users. |
| 365 | +* (bug 14806) Hook to enable putting preferences in existing tabs. |
| 366 | +* (bug 17191) Registration date now listed on preferences page. |
| 367 | +* Note that this change will break some extensions which have not been adapted |
| 368 | + for it. |
| 369 | +* (bug 17020) Adding fallback encodings for Traditional and Simplified Chinese |
| 370 | + languages while the the text is typed as URLs. |
370 | 371 | |
371 | 372 | == API changes in 1.15 == |
372 | 373 | * (bug 16858) Revamped list=deletedrevs to make listing deleted contributions |