Skip to content

Commit

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

Expand Down

0 comments on commit f6a543e

Please sign in to comment.