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

greggles’s picture

Status: Active » Closed (duplicate)

It 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