diff options
author | Andreas Gohr <andi@splitbrain.org> | 2005-09-15 17:06:13 +0200 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2005-09-15 17:06:13 +0200 |
commit | 4eeffcd2d853bd10a110c58b5f6c3dc03c3d86a7 (patch) | |
tree | b62875254ba7b17e761394623943da7c895079fd | |
parent | f8925855f0c0939a3e9c02f7bf41d465443d6cc6 (diff) | |
download | rpg-4eeffcd2d853bd10a110c58b5f6c3dc03c3d86a7.tar.gz rpg-4eeffcd2d853bd10a110c58b5f6c3dc03c3d86a7.tar.bz2 |
small fix for sepchar patch if useslash is disabled
darcs-hash:20050915150613-7ad00-8a42bb1d0eb5926ebc2f273d8416df87acfc6a11.gz
-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); |