diff options
author | terry%mozilla.org <> | 1999-10-21 00:17:37 +0200 |
---|---|---|
committer | terry%mozilla.org <> | 1999-10-21 00:17:37 +0200 |
commit | 7787fdfa5c9275d560be143b6ae0ca439f02c8df (patch) | |
tree | 728aa75e28448c0ba6005f5d212345a78e10b50a /long_list.cgi | |
parent | 2911603c213f06ebf23d1610b4af23c39a22cbf6 (diff) | |
download | bugzilla-7787fdfa5c9275d560be143b6ae0ca439f02c8df.tar.gz bugzilla-7787fdfa5c9275d560be143b6ae0ca439f02c8df.tar.xz |
Fix perl warning.
Diffstat (limited to 'long_list.cgi')
-rwxr-xr-x | long_list.cgi | 1 |
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"); |