Skip to content

Commit

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

Expand Down

0 comments on commit 55a1421

Please sign in to comment.