From f4a63dac75b24622f5864666ad28bc1c3209f468 Mon Sep 17 00:00:00 2001 From: Ryan Boren Date: Wed, 21 Mar 2007 06:07:17 +0000 Subject: [PATCH] Don't translate .thumbnail extension. fixes #2942 git-svn-id: https://develop.svn.wordpress.org/trunk@5071 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-admin/admin-functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-admin/admin-functions.php b/wp-admin/admin-functions.php index bdf7be03dd..d6966d501d 100644 --- a/wp-admin/admin-functions.php +++ b/wp-admin/admin-functions.php @@ -2209,7 +2209,7 @@ function wp_create_thumbnail( $file, $max_side, $effect = '' ) { // If no filters change the filename, we'll do a default transformation. if ( basename( $file ) == $thumb = apply_filters( 'thumbnail_filename', basename( $file ) ) ) - $thumb = preg_replace( '!(\.[^.]+)?$!', __( '.thumbnail' ).'$1', basename( $file ), 1 ); + $thumb = preg_replace( '!(\.[^.]+)?$!', '.thumbnail' . '$1', basename( $file ), 1 ); $thumbpath = str_replace( basename( $file ), $thumb, $file );