Details
Description
before when using the sluggable behavior the Doctrine_Inflector :: urlize function changed "catégorie 1" to "categorie-1"
since doctrine 1.2.2 "catégorie 1" becomes "categorie-aa"
before when using the sluggable behavior the Doctrine_Inflector :: urlize function changed "catégorie 1" to "categorie-1"
since doctrine 1.2.2 "catégorie 1" becomes "categorie-aa"
I see a bug here:
Inflector.php, line 221:
{{ 'Å'=>'Aa','Æ'=>'Ae','Ø'=>'O','æ'=>'a','ø'=>'o','å','aa'}}
probably, there is => missing and should be:
{{ 'Å'=>'Aa','Æ'=>'Ae','Ø'=>'O','æ'=>'a','ø'=>'o','å'=>'aa'}}
now, character '0' is replaced by 'å' and '1' is replaced by 'aa'