From 1bb92f194152fa52b46baafb033590ff09c64385 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bora=20Yal=C3=A7=C4=B1n?= Date: Wed, 9 Nov 2016 09:37:56 +0100 Subject: [PATCH] turkish chars added to defaultReplacements array MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Special letters in Turkish alphabet (see below) added to default replacements array as they were becoming - in page names. ı=i ğ=g İ=i Ç=c ş=s Ş=s --- .../Inputfield/InputfieldPageName/InputfieldPageName.module | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/wire/modules/Inputfield/InputfieldPageName/InputfieldPageName.module b/wire/modules/Inputfield/InputfieldPageName/InputfieldPageName.module index 95967e46..92587567 100644 --- a/wire/modules/Inputfield/InputfieldPageName/InputfieldPageName.module +++ b/wire/modules/Inputfield/InputfieldPageName/InputfieldPageName.module @@ -58,6 +58,9 @@ class InputfieldPageName extends InputfieldName implements ConfigurableModule { 'í' => 'i', 'ï' => 'i', 'î' => 'i', + 'ı' => 'i', + 'İ' => 'i', + 'ğ' => 'g', 'õ' => 'o', 'ò' => 'o', 'ó' => 'o', @@ -71,6 +74,7 @@ class InputfieldPageName extends InputfieldName implements ConfigurableModule { 'ç' => 'c', 'č' => 'c', 'ć' => 'c', + 'Ç' => 'c', 'ď' => 'd', 'ĺ' => 'l', 'ľ' => 'l', @@ -79,6 +83,8 @@ class InputfieldPageName extends InputfieldName implements ConfigurableModule { 'ŕ' => 'r', 'ř' => 'r', 'š' => 's', + 'ş' => 's', + 'Ş' => 's', 'ť' => 't', 'ý' => 'y', 'ž' => 'z',