mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 03:18:26 +00:00
removed Inflictor::slug()replacement from Ä to A
The slug replacement for Ä -> A is not necessary, because the better replacement Ä -> Ae is already defined and also covered by the test case.
This commit is contained in:
parent
1f31340a2a
commit
dfe54e90d6
1 changed files with 1 additions and 1 deletions
|
@ -177,7 +177,7 @@ class Inflector {
|
|||
'/Ä/' => 'Ae',
|
||||
'/Ü/' => 'Ue',
|
||||
'/Ö/' => 'Oe',
|
||||
'/À|Á|Â|Ã|Ä|Å|Ǻ|Ā|Ă|Ą|Ǎ/' => 'A',
|
||||
'/À|Á|Â|Ã|Å|Ǻ|Ā|Ă|Ą|Ǎ/' => 'A',
|
||||
'/à|á|â|ã|å|ǻ|ā|ă|ą|ǎ|ª/' => 'a',
|
||||
'/Ç|Ć|Ĉ|Ċ|Č/' => 'C',
|
||||
'/ç|ć|ĉ|ċ|č/' => 'c',
|
||||
|
|
Loading…
Reference in a new issue