From eedbebd40e1ea887fe1e42472570647e290bb96a Mon Sep 17 00:00:00 2001
From: Thomas Mueller <thomas.mueller@tmit.eu>
Date: Tue, 12 Mar 2013 09:26:21 +0100
Subject: [PATCH] adding //IGNORE to iconv to prevent nasty php warnings

---
 lib/files/mapper.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/files/mapper.php b/lib/files/mapper.php
index 418ef354f9..d65726d68d 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
-- 
GitLab