From: intrigeri Date: Sun, 2 Nov 2008 22:12:43 +0000 (+0100) Subject: po plugin: replace %hash=undef with undef %hash X-Git-Tag: 3.15~407^2~2 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=9bd3262f50eb3096482a24b0c15db47bce752c3d;p=ikiwiki.git po plugin: replace %hash=undef with undef %hash Signed-off-by: intrigeri --- diff --git a/IkiWiki/Plugin/po.pm b/IkiWiki/Plugin/po.pm index 59d938d82..155af706f 100644 --- a/IkiWiki/Plugin/po.pm +++ b/IkiWiki/Plugin/po.pm @@ -204,8 +204,8 @@ sub needsbuild () { #{{{ IkiWiki::refresh(); IkiWiki::saveindex(); # refresh module's private variables - %filtered=undef; - %translations=undef; + undef %filtered; + undef %translations; foreach my $page (keys %pagesources) { istranslation($page); }