Commit 52fecc3e authored by lpsolit%gmail.com's avatar lpsolit%gmail.com

Bug 399461: Bugzilla::Hook::process() doesn't flush Bugzilla->hook_args() after…

Bug 399461: Bugzilla::Hook::process() doesn't flush Bugzilla->hook_args() after executing an extension - Patch by Fré©ric Buclin <LpSolit@gmail.com> r/a=mkanat
parent b81b1e0b
......@@ -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({});
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment