Skip to content

Commit

Permalink
Fix salesagility#10433 - Email Address ID being double quoted
Browse files Browse the repository at this point in the history
  • Loading branch information
azzy9 committed May 21, 2024
1 parent 8212692 commit 565734b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/SugarEmailAddress/SugarEmailAddress.php
Original file line number Diff line number Diff line change
Expand Up @@ -466,7 +466,7 @@ protected function handleEmailSaveAtUserProfile($id, $address, $primary, $replyT
email_address = '$_address',
email_address_caps = '$_addressCaps'
WHERE
id = '{$_id}' AND
id = {$_id} AND
deleted = 0";
$result = $db->query($query);
if (!$result) {
Expand Down

0 comments on commit 565734b

Please sign in to comment.