summaryrefslogtreecommitdiffstats
path: root/long_list.cgi
diff options
context:
space:
mode:
authorterry%mozilla.org <>1999-10-21 00:17:37 +0200
committerterry%mozilla.org <>1999-10-21 00:17:37 +0200
commit7787fdfa5c9275d560be143b6ae0ca439f02c8df (patch)
tree728aa75e28448c0ba6005f5d212345a78e10b50a /long_list.cgi
parent2911603c213f06ebf23d1610b4af23c39a22cbf6 (diff)
downloadbugzilla-7787fdfa5c9275d560be143b6ae0ca439f02c8df.tar.gz
bugzilla-7787fdfa5c9275d560be143b6ae0ca439f02c8df.tar.xz
Fix perl warning.
Diffstat (limited to 'long_list.cgi')
-rwxr-xr-xlong_list.cgi1
1 files changed, 1 insertions, 0 deletions
diff --git a/long_list.cgi b/long_list.cgi
index 0641dd229..55d2195a7 100755
--- a/long_list.cgi
+++ b/long_list.cgi
@@ -63,6 +63,7 @@ from bugs,profiles assign,profiles report
where assign.userid = bugs.assigned_to and report.userid = bugs.reporter and
bugs.groupset & $::usergroupset = bugs.groupset and";
+$::FORM{'buglist'} = "" unless exists $::FORM{'buglist'};
foreach my $bug (split(/:/, $::FORM{'buglist'})) {
SendSQL("$generic_query bugs.bug_id = $bug");