Index: trunk/phase3/includes/Defines.php |
— | — | @@ -114,7 +114,7 @@ |
115 | 115 | |
116 | 116 | /**@{ |
117 | 117 | * Media types. |
118 | | - * This defines constants for the value returned by Image::getMediaType() |
| 118 | + * This defines constants for the value returned by File::getMediaType() |
119 | 119 | */ |
120 | 120 | define( 'MEDIATYPE_UNKNOWN', 'UNKNOWN' ); // unknown format |
121 | 121 | define( 'MEDIATYPE_BITMAP', 'BITMAP' ); // some bitmap image or image source (like psd, etc). Can't scale up. |
Index: trunk/phase3/includes/HTMLCacheUpdate.php |
— | — | @@ -18,7 +18,7 @@ |
19 | 19 | * batches, but of course LIMIT with an offset is inefficient on the DB side. |
20 | 20 | * |
21 | 21 | * The class is nevertheless a vast improvement on the previous method of using |
22 | | - * Image::getLinksTo() and Title::touchArray(), which uses about 2KB of memory per |
| 22 | + * File::getLinksTo() and Title::touchArray(), which uses about 2KB of memory per |
23 | 23 | * link. |
24 | 24 | * |
25 | 25 | * @ingroup Cache |