Skip to content

Commit

Permalink
Update bug_reminder_mail.php
Browse files Browse the repository at this point in the history
  • Loading branch information
CasN authored Apr 23, 2024
1 parent 55a1421 commit 249b355
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion scripts/bug_reminder_mail.php
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,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;
}
}

if ( ON == $t_rem_group1 ) {
Expand Down

0 comments on commit 249b355

Please sign in to comment.