Index: trunk/phase3/includes/filerepo/File.php |
— | — | @@ -528,6 +528,7 @@ |
529 | 529 | * @deprecated use transform() |
530 | 530 | */ |
531 | 531 | public function getThumbnail( $width, $height=-1, $render = true ) { |
| 532 | + wfDeprecated( __METHOD__ ); |
532 | 533 | $params = array( 'width' => $width ); |
533 | 534 | if ( $height != -1 ) { |
534 | 535 | $params['height'] = $height; |
— | — | @@ -886,6 +887,7 @@ |
887 | 888 | * @deprecated Use HTMLCacheUpdate, this function uses too much memory |
888 | 889 | */ |
889 | 890 | function getLinksTo( $options = array() ) { |
| 891 | + wfDeprecated( __METHOD__ ); |
890 | 892 | wfProfileIn( __METHOD__ ); |
891 | 893 | |
892 | 894 | // Note: use local DB not repo DB, we want to know local links |