summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Hook.pm
diff options
context:
space:
mode:
authorjocuri%softhome.net <>2006-03-01 00:41:04 +0100
committerjocuri%softhome.net <>2006-03-01 00:41:04 +0100
commit4cde47cdf30a0f3f97c782e8b13cde0149851143 (patch)
treeb7d3903b838aa9d9ea20df6eb144ea6c93329ed9 /Bugzilla/Hook.pm
parent692dcb72ed5ed25d2320a962ab28008a797c5b08 (diff)
downloadbugzilla-4cde47cdf30a0f3f97c782e8b13cde0149851143.tar.gz
bugzilla-4cde47cdf30a0f3f97c782e8b13cde0149851143.tar.xz
Fix ThrowCodeError calls by giving them an unique ID (tree fix).
Diffstat (limited to 'Bugzilla/Hook.pm')
-rw-r--r--Bugzilla/Hook.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/Bugzilla/Hook.pm b/Bugzilla/Hook.pm
index 97bec6c5c..9d8059478 100644
--- a/Bugzilla/Hook.pm
+++ b/Bugzilla/Hook.pm
@@ -43,8 +43,8 @@ sub process {
trick_taint($extension);
if (-e $extension.'/code/'.$name.'.pl') {
do($extension.'/code/'.$name.'.pl');
- ThrowCodeError("An error occured processing hook \"$name\" in ".
- "Bugzilla extension \"$extension\": $@") if $@;
+ ThrowCodeError('extension_invalid', {
+ name => $name, extension => $extension }) if $@;
}
}