Closed (duplicate)
Project:
Pathauto
Version:
4.7.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Reporter:
Created:
2 Sep 2006 at 17:32 UTC
Updated:
13 Sep 2006 at 23:16 UTC
It seems that pathauto module in function pathauto_cleanstring doesn't convert all the characters properly. I mean, Polish character ś or Ś is not converted into s or S, which should be done. The utf8 code of ś is c59b and of Ś is c59a. I solved this by adding this to the array named $translations, so the last line (254 of pathauto.module file) looks now like this:
'Ăź'=>'ss','Ĺż'=>'ss', "\xc5\x9b"=>'s', "\xc5\x9a"=>'S');
Comments
Comment #1
gregglesIt looks like these are included in the file used by http://dev.textpattern.com/browser/development/4.0/textpattern/lib/i18n-... (I checked a couple) .
Since I plan to use that file as part of the "overhaul" of cleanstring I'm marking this as a duplicate of http://drupal.org/node/61815