From 98c868589ee0757f176239cf289cbd007bb74852 Mon Sep 17 00:00:00 2001 From: Andreas Gohr Date: Fri, 17 Feb 2006 23:20:40 +0100 Subject: file cleanups This patch cleans up the source code to satisfy the coding guidelines (see http://wiki.splitbrain.org/wiki:development#coding_style) It converts files to UNIX lineendings and removes tabs and trailing whitespace. Not all files were cleaned yet. darcs-hash:20060217222040-7ad00-bba3d2bee3b5aa7cbb5184258abd50805cd071bf.gz --- inc/pageutils.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'inc/pageutils.php') diff --git a/inc/pageutils.php b/inc/pageutils.php index 53e5b2aba..2a07b5fe6 100644 --- a/inc/pageutils.php +++ b/inc/pageutils.php @@ -1,7 +1,7 @@ * @todo Combine similar functions like {wiki,media,meta}FN() @@ -15,7 +15,7 @@ * * For $param='id' $conf['start'] is returned if no id was found. * If the second parameter is true (default) the ID is cleaned. - * + * * @author Andreas Gohr */ function getID($param='id',$clean=true){ @@ -54,7 +54,7 @@ function getID($param='id',$clean=true){ } if($clean) $id = cleanID($id); if(empty($id) && $param=='id') $id = $conf['start']; - + return $id; } @@ -72,7 +72,7 @@ function cleanID($id,$ascii=false){ global $conf; global $lang; static $sepcharpat = null; - + $sepchar = $conf['sepchar']; if($sepcharpat == null) // build string only once to save clock cycles $sepcharpat = '#\\'.$sepchar.'+#'; @@ -88,7 +88,7 @@ function cleanID($id,$ascii=false){ $id = strtr($id,'/',$sepchar); } - if($conf['deaccent'] == 2 || $ascii) $id = utf8_romanize($id); + if($conf['deaccent'] == 2 || $ascii) $id = utf8_romanize($id); if($conf['deaccent'] || $ascii) $id = utf8_deaccent($id,-1); //remove specials -- cgit v1.2.3