Change record status: 
Project: 
Introduced in branch: 
8.x
Introduced in version: 
7.12
Description: 

This function is used to get the filename from a file path. PHP's basename() removes all non-US-ASCII characters, so drupal_basename() was added as a workaround.

Before:

$filename = basename($path);

Now:

$filename = drupal_basename($path);
Impacts: 
Module developers

Comments

jamiegrinnell’s picture

Where is this code for me to change it?