From dfe54e90d6b77f56a9b98a59817f5c70e02f9d40 Mon Sep 17 00:00:00 2001 From: Schlaefer Date: Thu, 1 Nov 2012 15:47:50 +0100 Subject: [PATCH] =?UTF-8?q?removed=20Inflictor::slug()replacement=20from?= =?UTF-8?q?=20=C3=84=20to=20A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The slug replacement for Ä -> A is not necessary, because the better replacement Ä -> Ae is already defined and also covered by the test case. --- lib/Cake/Utility/Inflector.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Cake/Utility/Inflector.php b/lib/Cake/Utility/Inflector.php index 47c5914821d..b724d421818 100644 --- a/lib/Cake/Utility/Inflector.php +++ b/lib/Cake/Utility/Inflector.php @@ -177,7 +177,7 @@ class Inflector { '/Ä/' => 'Ae', '/Ü/' => 'Ue', '/Ö/' => 'Oe', - '/À|Á|Â|Ã|Ä|Å|Ǻ|Ā|Ă|Ą|Ǎ/' => 'A', + '/À|Á|Â|Ã|Å|Ǻ|Ā|Ă|Ą|Ǎ/' => 'A', '/à|á|â|ã|å|ǻ|ā|ă|ą|ǎ|ª/' => 'a', '/Ç|Ć|Ĉ|Ċ|Č/' => 'C', '/ç|ć|ĉ|ċ|č/' => 'c',