Skip to content

Commit

Permalink
Update bug_due_overview2.php
Browse files Browse the repository at this point in the history
  • Loading branch information
CasN authored Apr 23, 2024
1 parent f6a543e commit 01b5fd2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion scripts/bug_due_overview2.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,9 @@
$query .= " and bugs.project_id IN ". $t_rem_projects;
}
}else{
$query .= " and bugs.project_id NOT IN ".$t_rem_projects;
if (!empty( config_get( 'plugin_Reminder_reminder_project_id' ) )) {
$query .= " and bugs.project_id NOT IN ".$t_rem_projects;
}
}

$results = db_query( $query );
Expand Down

0 comments on commit 01b5fd2

Please sign in to comment.