WIKI CUSTOM - disable lowercasing of wiki page names so docs can work

our docs will need casing to work as the languages they document
ddifferentaite case and our links link to a page of the name of the
keyword - WITH CASE KEPT.
This commit is contained in:
Carsten Haitzler 2015-04-24 15:27:32 +09:00
parent a610572ca5
commit 49a44ed9f3
1 changed files with 2 additions and 1 deletions

View File

@ -119,7 +119,8 @@ function cleanID($raw_id,$ascii=false){
$sepcharpat = '#\\'.$sepchar.'+#';
$id = trim((string)$raw_id);
$id = utf8_strtolower($id);
// stop lower-casing links - we need this for our docs to work. case matters
// $id = utf8_strtolower($id);
//alternative namespace seperator
if($conf['useslash']){