diff options
-rw-r--r-- | IkiWiki/Plugin/po.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/IkiWiki/Plugin/po.pm b/IkiWiki/Plugin/po.pm index 552b6b51b..29945da33 100644 --- a/IkiWiki/Plugin/po.pm +++ b/IkiWiki/Plugin/po.pm @@ -865,7 +865,7 @@ sub otherlanguages_pages ($) { my %ret; map { $ret{$_} = otherlanguage_page($page, $_) - } otherlanguages_codes($page); + } @{otherlanguages_codes($page)}; return \%ret; } |