Changeset 3340

Show
Ignore:
Timestamp:
12/22/05 05:18:18 (3 years ago)
Author:
ryan
Message:

Reduce consecutive backslashes to one backslash. Handy when escaped windows paths are passed in.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/wp-includes/functions.php

    r3330 r3340  
    22532253 
    22542254function plugin_basename($file) { 
     2255    $file = preg_replace('|\\\\+|', '\\\\', $file); 
    22552256    $file = preg_replace('/^.*wp-content[\\\\\/]plugins[\\\\\/]/', '', $file); 
    22562257    return $file;