From 86660e9c82b67f9165cb5fabe28c341a338d8c4e Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Wed, 6 Aug 2008 01:05:44 -0400 Subject: [PATCH] external: Fix support for hooks called in an array context. --- IkiWiki/Plugin/external.pm | 3 +-- debian/changelog | 1 + 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/IkiWiki/Plugin/external.pm b/IkiWiki/Plugin/external.pm index ff3b2d8ed..ba6c7d8b9 100644 --- a/IkiWiki/Plugin/external.pm +++ b/IkiWiki/Plugin/external.pm @@ -217,8 +217,7 @@ sub hook ($@) { #{{{ delete $params{call}; IkiWiki::hook(%params, call => sub { - my $ret=IkiWiki::Plugin::external::rpc_call($plugin, $callback, @_); - return $ret; + IkiWiki::Plugin::external::rpc_call($plugin, $callback, @_); }); } #}}} diff --git a/debian/changelog b/debian/changelog index b8fcf619e..b4bdfeefe 100644 --- a/debian/changelog +++ b/debian/changelog @@ -24,6 +24,7 @@ ikiwiki (2.60) UNRELEASED; urgency=low * autoindex: Ignore internal pages, and take underlay directories into account. Also, avoid making index pages for directories that contain no files. + * external: Fix support for hooks called in an array context. -- Joey Hess Mon, 21 Jul 2008 11:35:46 -0400 -- 2.32.0.93.g670b81a890