mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-07-21 01:20:13 +00:00
Replace usages of basename() with wp_basename() in order to support multibyte filenames
This is focused on the pieces of code that touch media files and the tests that support them. `basename` isn't multibyte compatible out of the box. See http://php.net/basename and https://bugs.php.net/bug.php?id=62119. See #43170. Props Viper007Bond. git-svn-id: https://develop.svn.wordpress.org/trunk@44785 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -17,7 +17,7 @@ class Tests_Image_Intermediate_Size extends WP_UnitTestCase {
|
||||
|
||||
public function _make_attachment( $file, $parent_post_id = 0 ) {
|
||||
$contents = file_get_contents( $file );
|
||||
$upload = wp_upload_bits( basename( $file ), null, $contents );
|
||||
$upload = wp_upload_bits( wp_basename( $file ), null, $contents );
|
||||
|
||||
return parent::_make_attachment( $upload, $parent_post_id );
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user