Make WordPress Core

Ticket #49872: 49872.patch

File 49872.patch, 616 bytes (added by mukesh27, 4 years ago)

Initial patch.

  • src/wp-includes/functions.php

     
    902902
    903903                                // Check to see if we can figure out the mime type from the extension.
    904904                                $url_parts = @parse_url( $url );
    905                                 if ( false !== $url_parts ) {
     905                                if ( false !== $url_parts && ! empty( $url_parts['path'] ) ) {
    906906                                        $extension = pathinfo( $url_parts['path'], PATHINFO_EXTENSION );
    907907                                        if ( ! empty( $extension ) ) {
    908908                                                foreach ( wp_get_mime_types() as $exts => $mime ) {