diff --git a/htdocs/stripe/admin/stripe.php b/htdocs/stripe/admin/stripe.php
index 91254e540a4..8d61407dcc0 100644
--- a/htdocs/stripe/admin/stripe.php
+++ b/htdocs/stripe/admin/stripe.php
@@ -197,12 +197,12 @@ if (empty($conf->stripeconnect->enabled))
print ''.$langs->trans("STRIPE_TEST_WEBHOOK_KEY").'
';
if ($conf->global->MAIN_FEATURES_LEVEL >= 2) {
print '';
- print ' '.$langs->trans("Example").': we_xxxxxxxxxxxxxxxxxxxxxxxx ';
+ print ' '.$langs->trans("Example").': we_xxxxxxxxxxxxxxxxxxxxxxxx ';
}
print '';
print ' '.$langs->trans("Example").': whsec_xxxxxxxxxxxxxxxxxxxxxxxx';
$out = img_picto('', 'object_globe.png').' '.$langs->trans("ToOfferALinkForTestWebhook").' ';
- $url = dol_buildpath('/public/stripe/ipn.php?test', 3);
+ $url = dol_buildpath('/public/stripe/ipn.php?test', 2);
$out.= '';
$out.= ajax_autoselect("onlinetestwebhookurl", 0);
print ' '.$out;
@@ -269,13 +269,13 @@ if (empty($conf->stripeconnect->enabled))
print ' | | ';
print ''.$langs->trans("STRIPE_LIVE_WEBHOOK_KEY").' | ';
if ($conf->global->MAIN_FEATURES_LEVEL >= 2) {
- print '';
- print ' '.$langs->trans("Example").': we_xxxxxxxxxxxxxxxxxxxxxxxx ';
+ print '';
+ print ' '.$langs->trans("Example").': we_xxxxxxxxxxxxxxxxxxxxxxxx ';
}
print '';
print ' '.$langs->trans("Example").': whsec_xxxxxxxxxxxxxxxxxxxxxxxx';
$out = img_picto('', 'object_globe.png').' '.$langs->trans("ToOfferALinkForLiveWebhook").' ';
- $url = dol_buildpath('/public/stripe/ipn.php', 3);
+ $url = dol_buildpath('/public/stripe/ipn.php', 2);
$out.= '';
$out.= ajax_autoselect("onlinelivewebhookurl", 0);
print ' '.$out;
|