diff options
-rwxr-xr-x | long_list.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/long_list.cgi b/long_list.cgi index 63120e5eb..f6182d439 100755 --- a/long_list.cgi +++ b/long_list.cgi @@ -73,7 +73,7 @@ where assign.userid = bugs.assigned_to and report.userid = bugs.reporter and"; $::FORM{'buglist'} = "" unless exists $::FORM{'buglist'}; foreach my $bug (split(/:/, $::FORM{'buglist'})) { - if (!detaint_natural($bug)) || next; + detaint_natural($bug) || next; SendSQL(SelectVisible("$generic_query bugs.bug_id = $bug", $::userid, $::usergroupset)); |