From 718f80eda24c887fa1e31b8142776351db64fe10 Mon Sep 17 00:00:00 2001 From: Simon Green Date: Tue, 13 Nov 2012 14:43:01 +0800 Subject: Bug 615627: Make t/012throwables.t know about user errors defined in extensions r=dkl, a=LpSolit --- extensions/Example/Extension.pm | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'extensions/Example') diff --git a/extensions/Example/Extension.pm b/extensions/Example/Extension.pm index f3efcb2a8..b3b1b299f 100644 --- a/extensions/Example/Extension.pm +++ b/extensions/Example/Extension.pm @@ -709,10 +709,12 @@ sub _check_short_desc { my $invocant = shift; my $value = $invocant->$original(@_); if ($value !~ /example/i) { - # Uncomment this line to make Bugzilla throw an error every time + # Use this line to make Bugzilla throw an error every time # you try to file a bug or update a bug without the word "example" # in the summary. - #ThrowUserError('example_short_desc_invalid'); + if (0) { + ThrowUserError('example_short_desc_invalid'); + } } return $value; } -- cgit v1.2.3-24-g4f1b