Suppress warnings
[lhc/web/wiklou.git] / includes / AjaxFunctions.php
index 6e1b6be..04572b4 100644 (file)
@@ -82,22 +82,6 @@ function code2utf( $num ) {
        return '';
 }
 
-/**
- * Called in some places (currently just extensions)
- * to get the thumbnail URL for a given file at a given resolution.
- */
-function wfAjaxGetThumbnailUrl( $file, $width, $height ) {
-       $file = wfFindFile( $file );
-
-       if ( !$file || !$file->exists() ) {
-               return null;
-       }
-
-       $url = $file->getThumbnail( $width, $height )->url;
-
-       return $url;
-}
-
 /**
  * Called in some places (currently just extensions)
  * to get the URL for a given file.