Skip to content

Commit

Permalink
Concat operator spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
Aniessh Sethh committed Aug 9, 2018
1 parent 1f34b85 commit 17ddbbe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CRM/Event/Form/SelfSvcTransfer.php
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,7 @@ public function postProcess() {
}
else {
//cancel 'from' participant row
$query = "select contact_id from civicrm_email left join civicrm_contact on civicrm_contact.id=civicrm_email.contact_id where email='".$params['email']."' and is_deleted=0;";
$query = "select contact_id from civicrm_email left join civicrm_contact on civicrm_contact.id=civicrm_email.contact_id where email='" . $params['email'] . "' and is_deleted=0";
$dao = CRM_Core_DAO::executeQuery($query);
while ($dao->fetch()) {
$contact_id = $dao->contact_id;
Expand Down

0 comments on commit 17ddbbe

Please sign in to comment.