Skip to content

Commit

Permalink
Fix salesagility#10566 - Incorrect date and time in the relationship …
Browse files Browse the repository at this point in the history
…with a person in the target lists
  • Loading branch information
SinergiaCRM committed Oct 29, 2024
1 parent 80ee82d commit 718d833
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/ProspectLists/ProspectList.php
Original file line number Diff line number Diff line change
Expand Up @@ -427,7 +427,7 @@ public function save($check_notify = false)

public function mark_deleted($id)
{
$query = "UPDATE prospect_lists_prospects SET deleted = 1, date_modified = NOW() WHERE prospect_list_id = '{$id}' AND deleted = 0";
$query = "UPDATE prospect_lists_prospects SET deleted = 1, date_modified = UTC_TIMESTAMP() WHERE prospect_list_id = '{$id}' AND deleted = 0";
$this->db->query($query);
return parent::mark_deleted($id);
}
Expand Down

0 comments on commit 718d833

Please sign in to comment.