Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Stripe
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Extensions
Stripe
Merge requests
!94
Deactivate "exitOnException" and call $ipnClass->main(); from inside a try catch to allow loops
Code
Review changes
Check out branch
Download
Patches
Plain diff
Closed
Deactivate "exitOnException" and call $ipnClass->main(); from inside a try catch to allow loops
capo/stripe:allow_loops_on_ipn
into
6.4
Overview
3
Commits
1
Pipelines
0
Changes
1
Closed
capo
requested to merge
capo/stripe:allow_loops_on_ipn
into
6.4
5 years ago
Overview
3
Commits
1
Pipelines
0
Changes
1
Expand
Hi
@mattwire
, this is the 2nd part of what we discussed
here
. Let me know how it looks to you.
0
0
Merge request reports
Compare
6.4
version 1
fa17e6f0
5 years ago
6.4 (base)
and
latest version
latest version
fa17e6f0
1 commit,
5 years ago
version 1
fa17e6f0
1 commit,
5 years ago
1 file
+
6
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
api/v3/Stripe/Ipn.php
+
6
−
1
Options
@@ -97,7 +97,12 @@ function civicrm_api3_stripe_Ipn($params) {
// CRM_Core_Payment::handlePaymentMethod
$_GET
[
'processor_id'
]
=
$ppid
;
$ipnClass
=
new
CRM_Core_Payment_StripeIPN
(
$object
);
$ipnClass
->
main
();
$ipnClass
->
setExceptionMode
(
FALSE
);
try
{
$ipnClass
->
main
();
}
catch
(
Throwable
$e
)
{
return
civicrm_api3_create_error
(
$e
->
getMessage
());
}
if
(
$params
[
'noreceipt'
]
==
1
)
{
$ipnClass
->
setSendEmailReceipt
(
0
);
}
Loading