diff options
-rw-r--r-- | inc/common.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/common.php b/inc/common.php index c17310d7e..eb7902106 100644 --- a/inc/common.php +++ b/inc/common.php @@ -396,7 +396,7 @@ function cleanID($id){ //alternative namespace seperator $id = strtr($id,';',':'); - $id = strtr($id,'/',':'); + if($conf['useslash']) $id = strtr($id,'/',':'); if(!$conf['localnames']){ if($lang['encoding'] == 'iso-8859-15'){ |