summaryrefslogtreecommitdiff
path: root/inc/pageutils.php
diff options
context:
space:
mode:
authorTom N Harris <tnharris@whoopdedo.org>2011-03-14 20:39:30 -0400
committerAndreas Gohr <andi@splitbrain.org>2012-11-18 20:11:43 +0100
commit3755fc25fd2934f8d887f713a48b342ef252cfee (patch)
treebfb08bd89e821dc0f1e7be87057efea2808fb0e8 /inc/pageutils.php
parentc786a1b6200b051466db67a1791f46bbd375bb3b (diff)
downloadrpg-3755fc25fd2934f8d887f713a48b342ef252cfee.tar.gz
rpg-3755fc25fd2934f8d887f713a48b342ef252cfee.tar.bz2
Combine subsequent calls to strtr into a single transformation
Diffstat (limited to 'inc/pageutils.php')
-rw-r--r--inc/pageutils.php5
1 files changed, 2 insertions, 3 deletions
diff --git a/inc/pageutils.php b/inc/pageutils.php
index ef82eebcd..ca4936a82 100644
--- a/inc/pageutils.php
+++ b/inc/pageutils.php
@@ -115,11 +115,10 @@ function cleanID($raw_id,$ascii=false,$media=false){
$id = utf8_strtolower($id);
//alternative namespace seperator
- $id = strtr($id,';',':');
if($conf['useslash']){
- $id = strtr($id,'/',':');
+ $id = strtr($id,';/','::');
}else{
- $id = strtr($id,'/',$sepchar);
+ $id = strtr($id,';/',':'.$sepchar);
}
if($conf['deaccent'] == 2 || $ascii) $id = utf8_romanize($id);