--- pathauto.inc 2007-09-05 11:50:00.000000000 -0400 +++ pathauto_new.inc 2007-09-12 13:12:23.000000000 -0400 @@ -97,11 +97,11 @@ function pathauto_cleanstring($string) { } $output = strtr($output, $translations); - + } // Preserve alphanumerics, everything else becomes a separator. $pattern = '/[^a-zA-Z0-9]+/ '; $output = preg_replace($pattern, $separator, $output); - } + // Get rid of words that are on the ignore list $ignore_re = "\b". preg_replace("/,/", "\b|\b", variable_get('pathauto_ignore_words', $ignore_words)) ."\b";