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
Updates Done (doc team, etc.)
Online documentation: 
Not done
Theming guide: 
Not done
Module developer documentation: 
Not done
Examples project: 
Not done
Coder Review: 
Not done
Coder Upgrade: 
Not done
Other: 
Other updates done

Comments

jamiegrinnell’s picture

Where is this code for me to change it?