By chx on
Change record status:
Published (View all published change records)
Project:
Introduced in branch:
8.x
Introduced in version:
7.12
Issue links:
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
Where is this code for me to
Where is this code for me to change it?