From 963591d5e1ca501fffc5c1a21a4e80c11cdcb4fc Mon Sep 17 00:00:00 2001 From: Colin Kuskie Date: Mon, 7 Jun 2010 15:49:07 -0700 Subject: [PATCH] Fix a bad around wrapper in the RssFeed assetExportHtml sub. --- lib/WebGUI/Role/Asset/RssFeed.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/WebGUI/Role/Asset/RssFeed.pm b/lib/WebGUI/Role/Asset/RssFeed.pm index 34b776524..d61d103fe 100644 --- a/lib/WebGUI/Role/Asset/RssFeed.pm +++ b/lib/WebGUI/Role/Asset/RssFeed.pm @@ -243,7 +243,7 @@ around exportAssetCollateral => sub { $reportSession->output->print($reporti18n->get('done')); } } - return $self->$orig(@_); + return $self->$orig($basepath, $args, $reportSession); }; #-------------------------------------------------------------------