Files
oddmuse/modules/download.pl
Alex Schroeder 14b763f3c7 Fix for wiki.pl 1.419: Important change in handling rules! Rules are
expected to return undef when they did not match, and the empty string
if a dirty block was produced.
2004-06-17 01:13:18 +00:00

13 lines
229 B
Perl

push( @MyRules, \&DownloadSupportRule );
# [[download:page name]]
sub DownloadSupportRule {
if (m!\G(\[\[download:$FreeLinkPattern\]\])!gc) {
Dirty($1);
print GetDownloadLink($2);
return '';
}
return undef;
}