diff options
author | andi <andi@splitbrain.org> | 2005-02-28 21:29:40 +0100 |
---|---|---|
committer | andi <andi@splitbrain.org> | 2005-02-28 21:29:40 +0100 |
commit | 88d3a917fc755b07bc59ab80294eb06ae00c5c05 (patch) | |
tree | b6d5ade13c3c084dda115b28ae9ae49b2d666a77 | |
parent | e1906e6eda8098573a47fc7c78663348500920bd (diff) | |
download | rpg-88d3a917fc755b07bc59ab80294eb06ae00c5c05.tar.gz rpg-88d3a917fc755b07bc59ab80294eb06ae00c5c05.tar.bz2 |
fix for UTF8 namespaces in index #170
darcs-hash:20050228202940-9977f-4519f6a5fbc59d318ab3b55b2994fbb500344ccc.gz
-rw-r--r-- | inc/html.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/html.php b/inc/html.php index cb5496ccd..4761ade99 100644 --- a/inc/html.php +++ b/inc/html.php @@ -698,7 +698,7 @@ function html_index($ns){ $ns = dirname(str_replace(':','/',$ID)); if($ns == '.') $ns =''; } - $ns = str_replace(':','/',$ns); + $ns = utf8_encodeFN(str_replace(':','/',$ns)); print parsedLocale('index'); |