diff options
-rw-r--r-- | inc/pageutils.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/pageutils.php b/inc/pageutils.php index 9b1d9621a..4a4c9e500 100644 --- a/inc/pageutils.php +++ b/inc/pageutils.php @@ -80,7 +80,7 @@ function cleanID($id){ if($conf['useslash']){ $id = strtr($id,'/',':'); }else{ - $id = strtr($id,'/','_'); + $id = strtr($id,'/',$sepchar); } if($conf['deaccent']) $id = utf8_deaccent($id,-1); |