diff options
author | Andreas Gohr <andi@splitbrain.org> | 2012-07-28 10:40:48 +0200 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2012-07-28 10:40:48 +0200 |
commit | 3009a773c06e6e5d731c42b12ad82272f9706f03 (patch) | |
tree | 4e15ab478a04177de73ad9601842eee5c1be2162 /inc/Mailer.class.php | |
parent | f393a4eb51a5f8ed0e64f09f76cbafe57d7dcb57 (diff) | |
download | rpg-3009a773c06e6e5d731c42b12ad82272f9706f03.tar.gz rpg-3009a773c06e6e5d731c42b12ad82272f9706f03.tar.bz2 |
replaced use of basename() with utf8_basename() FS#2015
Diffstat (limited to 'inc/Mailer.class.php')
-rw-r--r-- | inc/Mailer.class.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/Mailer.class.php b/inc/Mailer.class.php index c85e61395..cbd1eb0a9 100644 --- a/inc/Mailer.class.php +++ b/inc/Mailer.class.php @@ -69,7 +69,7 @@ class Mailer { */ public function attachFile($path, $mime, $name = '', $embed = '') { if(!$name) { - $name = basename($path); + $name = utf8_basename($path); } $this->attach[] = array( |