From 52728bb6eaf71057a1b6bddc551ada1da1ea4ec4 Mon Sep 17 00:00:00 2001 From: intrigeri Date: Sat, 11 Oct 2008 03:01:59 +0200 Subject: [PATCH] po plugin: bugfix (calling function in wrong module) Signed-off-by: intrigeri --- IkiWiki/Plugin/po.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/IkiWiki/Plugin/po.pm b/IkiWiki/Plugin/po.pm index d60ade499..d3ccd37e1 100644 --- a/IkiWiki/Plugin/po.pm +++ b/IkiWiki/Plugin/po.pm @@ -233,7 +233,7 @@ use IkiWiki 2.00; sub match_istranslation ($;@) { #{{{ my $page=shift; - if (IkiWiki::Plugins::po::istranslation($page)) { + if (IkiWiki::Plugin::po::istranslation($page)) { return IkiWiki::SuccessReason->new("is a translation page"); } else { @@ -243,7 +243,7 @@ sub match_istranslation ($;@) { #{{{ sub match_istranslatable ($;@) { #{{{ my $page=shift; - if (IkiWiki::Plugins::po::istranslatable($page)) { + if (IkiWiki::Plugin::po::istranslatable($page)) { return IkiWiki::SuccessReason->new("is set as translatable in po_translatable_pages"); } else { -- 2.45.0