'Name default credit processor',
'coust', 'label'),
oils_i18n_gettext('credit.processor.default',
- 'This might be "AuthorizeNet", "PayPal", etc.',
+ 'This might be "AuthorizeNet", "PayPal", "PayflowPro", or "Stripe".',
'coust', 'description'),
'string', null)
-- opac to render a payment form at all
-- NEW 'credit.processor.stripe.enabled' must be true (kind of redundant but
-- my fault for setting the precedent with c.p.{authorizenet|paypal|payflowpro}.enabled)
--- 'credit.default.processor' must be 'stripe'
+-- 'credit.default.processor' must be 'Stripe'
-- NEW 'credit.processor.stripe.pubkey' must be set
-- NEW 'credit.processor.stripe.privatekey' must be set
'coust', 'description'),
'string', null)
;
+
+UPDATE config.org_unit_setting_type
+SET description = 'This might be "AuthorizeNet", "PayPal", "PayflowPro", or "Stripe".'
+WHERE name = 'credit.processor.default' AND description = 'This might be "AuthorizeNet", "PayPal", etc.'; -- don't clobber local edits or i18n
+
COMMIT;