Skip to content

Commit

Permalink
Update bug_feedback_mail.php
Browse files Browse the repository at this point in the history
  • Loading branch information
CasN authored Apr 23, 2024
1 parent 01b5fd2 commit fe191da
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion scripts/bug_feedback_mail.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,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";
$results = db_query( $query );
Expand Down

0 comments on commit fe191da

Please sign in to comment.