Skip to content
Snippets Groups Projects
Commit 1f948c12 authored by Joshua Walker's avatar Joshua Walker
Browse files

Merge pull request #93 from progressivetech/github92

Ensure campaign_id is a proper integer.
parents 3cf0a2cf 4f219a73
No related branches found
No related tags found
No related merge requests found
......@@ -91,7 +91,7 @@ class CRM_Stripe_Page_Webhook extends CRM_Core_Page {
$transaction_id = $charge->id;
$new_invoice_id = $stripe_event_data->data->object->id;
if (empty($recur_contrib_query->campaign_id)) {
$recur_contrib_query->campaign_id = 'NULL';
$recur_contrib_query->campaign_id = 0;
}
$query_params = array(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment