Skip to content

Commit

Permalink
Update assigned_bugs.php
Browse files Browse the repository at this point in the history
  • Loading branch information
CasN authored Apr 23, 2024
1 parent 73a686a commit addde58
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions scripts/assigned_bugs.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,10 @@
if (!empty( config_get( 'plugin_Reminder_reminder_project_id' ) )) {
$query .= " and bugs.project_id IN ". $t_rem_projects;
}
}else{
$query .= " and bugs.project_id NOT IN ".$t_rem_projects;
} else {
if (!empty( config_get( 'plugin_Reminder_reminder_project_id' ) )) {
$query .= " and bugs.project_id NOT IN ".$t_rem_projects;
}
}

$results = db_query( $query, array($t_resolved) );
Expand Down

0 comments on commit addde58

Please sign in to comment.