Version 2.1
This commit is contained in:
parent
2af426028b
commit
2c7f073baa
2 changed files with 9 additions and 0 deletions
|
@ -44,6 +44,10 @@ class HrefGenerator {
|
|||
$output = str_replace("ü","ue",$output);
|
||||
$output = str_replace("Ü","Ue",$output);
|
||||
$output = str_replace("ß","ss",$output);
|
||||
$output = str_replace('"', "", $output);
|
||||
$output = str_replace("'", "", $output);
|
||||
$output = str_replace("?", "", $output);
|
||||
$output = str_replace("#", "", $output);
|
||||
return $output;
|
||||
}
|
||||
|
||||
|
|
Reference in a new issue