Make WordPress Core

Ticket #63403: 63403.patch

File 63403.patch, 418 bytes (added by sainathpoojary, 11 months ago)
  • src/wp-includes/functions.php

    diff --git a/src/wp-includes/functions.php b/src/wp-includes/functions.php
    index 33b775e718..6105427f35 100644
    a b function path_join( $base, $path ) { 
    21822182 * @return string Normalized path.
    21832183 */
    21842184function wp_normalize_path( $path ) {
     2185        if ( ! $path ) {
     2186                return $path;
     2187        }
     2188
    21852189        $wrapper = '';
    21862190
    21872191        if ( wp_is_stream( $path ) ) {