diff options
author | Joey Hess <joey@kodama.kitenet.net> | 2008-07-02 18:08:47 -0400 |
---|---|---|
committer | Joey Hess <joey@kodama.kitenet.net> | 2008-07-02 18:22:49 -0400 |
commit | 8d3f65c293b400b874d76a28c0b78840373e05b5 (patch) | |
tree | 98fc856ba8e552993a10991906da23d26c631255 /IkiWiki.pm | |
parent | ca6d9da279539f0a22e7e06a7b79d5709fe9c7c2 (diff) | |
download | ikiwiki-8d3f65c293b400b874d76a28c0b78840373e05b5.tar ikiwiki-8d3f65c293b400b874d76a28c0b78840373e05b5.tar.gz |
typo
Diffstat (limited to 'IkiWiki.pm')
-rw-r--r-- | IkiWiki.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/IkiWiki.pm b/IkiWiki.pm index c7328e427..03b4b666e 100644 --- a/IkiWiki.pm +++ b/IkiWiki.pm @@ -1344,7 +1344,7 @@ sub match_glob ($$;@) { #{{{ $glob="$from/$glob" if length $from; } - my $regexp=glob2re($glob); + my $regexp=IkiWiki::glob2re($glob); if ($page=~/^$regexp$/i) { if (! IkiWiki::isinternal($page) || $params{internal}) { return IkiWiki::SuccessReason->new("$glob matches $page"); |