diff options
author | Byron Jones <bjones@mozilla.com> | 2012-04-26 09:10:53 +0200 |
---|---|---|
committer | Byron Jones <bjones@mozilla.com> | 2012-04-26 09:10:53 +0200 |
commit | 700a5600d148865c50dd3b0d2b9233e4414d5789 (patch) | |
tree | bab360e73fee7cf82a50adb9e2745039cdd02db0 /extensions/BMO/lib | |
parent | d703b0e69148da3cf5e01268ec0d288743ed2734 (diff) | |
download | bugzilla-700a5600d148865c50dd3b0d2b9233e4414d5789.tar.gz bugzilla-700a5600d148865c50dd3b0d2b9233e4414d5789.tar.xz |
bug 749069: more "use of uninitialized" warning fixes
Diffstat (limited to 'extensions/BMO/lib')
-rw-r--r-- | extensions/BMO/lib/Reports.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extensions/BMO/lib/Reports.pm b/extensions/BMO/lib/Reports.pm index e98e17d7b..55856e445 100644 --- a/extensions/BMO/lib/Reports.pm +++ b/extensions/BMO/lib/Reports.pm @@ -361,7 +361,7 @@ sub triage_reports { my $input = Bugzilla->input_params; my $user = Bugzilla->user; - if ($input->{'action'} eq 'run' && $input->{'product'}) { + if (exists $input->{'action'} && $input->{'action'} eq 'run' && $input->{'product'}) { # load product and components from input |