From 4eeffcd2d853bd10a110c58b5f6c3dc03c3d86a7 Mon Sep 17 00:00:00 2001 From: Andreas Gohr Date: Thu, 15 Sep 2005 17:06:13 +0200 Subject: small fix for sepchar patch if useslash is disabled darcs-hash:20050915150613-7ad00-8a42bb1d0eb5926ebc2f273d8416df87acfc6a11.gz --- inc/pageutils.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- cgit v1.2.3