raster pushed a commit to branch master.

http://git.enlightenment.org/website/www.git/commit/?id=49a44ed9f316ac34014d04513fbc5dd4dad048d0

commit 49a44ed9f316ac34014d04513fbc5dd4dad048d0
Author: Carsten Haitzler (Rasterman) <ras...@rasterman.com>
Date:   Fri Apr 24 15:27:32 2015 +0900

    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.
---
 public_html/inc/pageutils.php | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/public_html/inc/pageutils.php b/public_html/inc/pageutils.php
index 3757126..9b01662 100644
--- a/public_html/inc/pageutils.php
+++ b/public_html/inc/pageutils.php
@@ -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']){

-- 


Reply via email to