oy, case-insensativity lost!

master
joey 2006-08-02 01:06:59 +00:00
parent 9bb6b1be2e
commit 9db405f76a
1 changed files with 1 additions and 1 deletions

View File

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