From 508bdec5bd2db7c6f81faf65e3f44d54488c4eb3 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Tue, 5 Aug 2014 01:30:03 +0000 Subject: [PATCH] Use wp_normalize_path() in plugins_url(). props paulschreiber. fixes #29058. git-svn-id: https://develop.svn.wordpress.org/trunk@29375 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/link-template.php | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/src/wp-includes/link-template.php b/src/wp-includes/link-template.php index 31ee627e80..7a7b7874ed 100644 --- a/src/wp-includes/link-template.php +++ b/src/wp-includes/link-template.php @@ -2641,12 +2641,9 @@ function content_url($path = '') { */ function plugins_url( $path = '', $plugin = '' ) { - $path = str_replace( '\\' ,'/', $path ); // sanitize for Win32 installs - $path = preg_replace( '|/+|', '/', $path ); - $plugin = str_replace( '\\' ,'/', $plugin ); // sanitize for Win32 installs - $plugin = preg_replace( '|/+|', '/', $plugin ); - $mu_plugin_dir = str_replace( '\\' ,'/', WPMU_PLUGIN_DIR ); // sanitize for Win32 installs - $mu_plugin_dir = preg_replace( '|/+|', '/', $mu_plugin_dir ); + $path = wp_normalize_path( $path ); + $plugin = wp_normalize_path( $plugin ); + $mu_plugin_dir = wp_normalize_path( WPMU_PLUGIN_DIR ); if ( !empty($plugin) && 0 === strpos($plugin, $mu_plugin_dir) ) $url = WPMU_PLUGIN_URL;