projects
/
ikiwiki.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9bb6b1b
)
oy, case-insensativity lost!
author
joey
<joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>
Wed, 2 Aug 2006 01:06:59 +0000
(
01:06
+0000)
committer
joey
<joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>
Wed, 2 Aug 2006 01:06:59 +0000
(
01:06
+0000)
IkiWiki.pm
patch
|
blob
|
history
diff --git
a/IkiWiki.pm
b/IkiWiki.pm
index 991ff9ecbe14c6456c90bb490704c347a58ed286..7ef9007ff1636a26d439428baa60eeea58258099 100644
(file)
--- a/
IkiWiki.pm
+++ b/
IkiWiki.pm
@@
-571,7
+571,7
@@
sub match_glob ($$) { #{{{
$glob=~s/\\\*/.*/g;
$glob=~s/\\\?/./g;
- return $page=~/^$glob$/;
+ return $page=~/^$glob$/
i
;
} #}}}
sub match_link ($$) { #{{{