diff options
author | terry%mozilla.org <> | 1999-10-20 09:06:41 +0200 |
---|---|---|
committer | terry%mozilla.org <> | 1999-10-20 09:06:41 +0200 |
commit | db3478cb179febf37785ff26a486f7a0e5d2cb4e (patch) | |
tree | 1dd08d51a7cd71aafce4630ea981dc7777c0e30c /buglist.cgi | |
parent | d45b54f93429cb6942795db791f3c203df720124 (diff) | |
download | bugzilla-db3478cb179febf37785ff26a486f7a0e5d2cb4e.tar.gz bugzilla-db3478cb179febf37785ff26a486f7a0e5d2cb4e.tar.xz |
Fixed stupid perl warning.
Diffstat (limited to 'buglist.cgi')
-rwxr-xr-x | buglist.cgi | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/buglist.cgi b/buglist.cgi index 393616af9..f19150707 100755 --- a/buglist.cgi +++ b/buglist.cgi @@ -577,7 +577,9 @@ while (@row = FetchSQLData()) { next; } my $value = shift @row; - + if (!defined $value) { + next; + } if ($::needquote{$c}) { $value = html_quote($value); } else { |