From: Joey Hess Date: Thu, 28 Aug 2008 17:04:45 +0000 (-0400) Subject: filecheck: Fixed two bits broken in move from attachment. X-Git-Url: https://sipb.mit.edu/gitweb.cgi/ikiwiki.git/commitdiff_plain/2b602e2e9f06c79e969ae2e2fea64052edd82e6b?hp=be2f9421d5d3d4359b61ccbfbdaa7a7df58ed990 filecheck: Fixed two bits broken in move from attachment. --- diff --git a/IkiWiki/Plugin/filecheck.pm b/IkiWiki/Plugin/filecheck.pm index 1855a8b48..9c7a8dbb7 100644 --- a/IkiWiki/Plugin/filecheck.pm +++ b/IkiWiki/Plugin/filecheck.pm @@ -69,7 +69,7 @@ package IkiWiki::PageSpec; sub match_maxsize ($$;@) { #{{{ my $page=shift; - my $maxsize=eval{IkiWiki::Plugin::attachment::parsesize(shift)}; + my $maxsize=eval{IkiWiki::Plugin::filecheck::parsesize(shift)}; if ($@) { return IkiWiki::FailReason->new("unable to parse maxsize (or number too large)"); } @@ -90,7 +90,7 @@ sub match_maxsize ($$;@) { #{{{ sub match_minsize ($$;@) { #{{{ my $page=shift; - my $minsize=eval{IkiWiki::Plugin::attachment::parsesize(shift)}; + my $minsize=eval{IkiWiki::Plugin::filecheck::parsesize(shift)}; if ($@) { return IkiWiki::FailReason->new("unable to parse minsize (or number too large)"); } diff --git a/debian/changelog b/debian/changelog index 5d2a7d6d1..f1265ebec 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +ikiwiki (2.63) UNRELEASED; urgency=low + + * filecheck: Fixed two bits broken in move from attachment. + + -- Joey Hess Thu, 28 Aug 2008 13:04:15 -0400 + ikiwiki (2.62) unstable; urgency=low * Avoid using cp -a (again). (HenrikBrixAndersen)