Skip to content

Commit

Permalink
Update bug_feedback_mail_test.php
Browse files Browse the repository at this point in the history
Fixed a bug when excluding projects
  • Loading branch information
CasN authored Apr 23, 2024
1 parent 6cd2508 commit 00eaf22
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/bug_feedback_mail_test.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
$t_rem_projects .= config_get('plugin_Reminder_reminder_project_id');
$t_rem_projects .= ")";
if (ON==$t_rem_include){
if ($t_rem_projects <>"0") {
if (!empty( config_get( 'plugin_Reminder_reminder_project_id' ) )) {
$query .= " and bugs.project_id IN ". $t_rem_projects;
}
}else{
Expand Down

0 comments on commit 00eaf22

Please sign in to comment.