diff options
author | Thomas Mueller <thomas.mueller@tmit.eu> | 2013-03-12 09:26:21 +0100 |
---|---|---|
committer | Thomas Mueller <thomas.mueller@tmit.eu> | 2013-03-12 09:26:21 +0100 |
commit | eedbebd40e1ea887fe1e42472570647e290bb96a (patch) | |
tree | fea038496c9f9ca607a7e5041e1161c3e960f790 /lib | |
parent | 06992fec6d3d014060f8c4f4a5a75bb759d6c86e (diff) | |
download | nextcloud-server-eedbebd40e1ea887fe1e42472570647e290bb96a.tar.gz nextcloud-server-eedbebd40e1ea887fe1e42472570647e290bb96a.zip |
adding //IGNORE to iconv to prevent nasty php warnings
Diffstat (limited to 'lib')
-rw-r--r-- | lib/files/mapper.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/files/mapper.php b/lib/files/mapper.php index 418ef354f9c..d65726d68de 100644 --- a/lib/files/mapper.php +++ b/lib/files/mapper.php @@ -210,7 +210,7 @@ class Mapper // transliterate if (function_exists('iconv')) { - $text = iconv('utf-8', 'us-ascii//TRANSLIT', $text); + $text = iconv('utf-8', 'us-ascii//TRANSLIT//IGNORE', $text); } // lowercase |