]> sipb.mit.edu Git - ikiwiki.git/commitdiff
oy, case-insensativity lost!
authorjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>
Wed, 2 Aug 2006 01:06:59 +0000 (01:06 +0000)
committerjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>
Wed, 2 Aug 2006 01:06:59 +0000 (01:06 +0000)
IkiWiki.pm

index 991ff9ecbe14c6456c90bb490704c347a58ed286..7ef9007ff1636a26d439428baa60eeea58258099 100644 (file)
@@ -571,7 +571,7 @@ sub match_glob ($$) { #{{{
        $glob=~s/\\\*/.*/g;
        $glob=~s/\\\?/./g;
 
        $glob=~s/\\\*/.*/g;
        $glob=~s/\\\?/./g;
 
-       return $page=~/^$glob$/;
+       return $page=~/^$glob$/i;
 } #}}}
 
 sub match_link ($$) { #{{{
 } #}}}
 
 sub match_link ($$) { #{{{