From 52fecc3e11f934046e721bd18cd05f746bd8166f Mon Sep 17 00:00:00 2001 From: "lpsolit%gmail.com" <> Date: Fri, 12 Oct 2007 01:01:34 +0000 Subject: =?UTF-8?q?Bug=20399461:=20Bugzilla::Hook::process()=20doesn't=20f?= =?UTF-8?q?lush=20Bugzilla->hook=5Fargs()=20after=20executing=20an=20exten?= =?UTF-8?q?sion=20-=20Patch=20by=20Fr=C3=83=C2=A9d=C3=83=C2=A9ric=20Buclin?= =?UTF-8?q?=20=20r/a=3Dmkanat?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Bugzilla/Hook.pm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Bugzilla/Hook.pm b/Bugzilla/Hook.pm index 6b710f8b5..a9cfc649c 100644 --- a/Bugzilla/Hook.pm +++ b/Bugzilla/Hook.pm @@ -49,6 +49,8 @@ sub process { do($extension.'/code/'.$name.'.pl'); ThrowCodeError('extension_invalid', { errstr => $@, name => $name, extension => $extension }) if $@; + # Flush stored data. + Bugzilla->hook_args({}); } } -- cgit v1.2.1