From 60ef02f419488ae68253d283db7097e2ecbb9f4c Mon Sep 17 00:00:00 2001 From: Terran McCanna Date: Mon, 25 Apr 2022 12:43:11 -0400 Subject: [PATCH] Correction - user id rather than card id Signed-off-by: Terran McCanna --- Open-ILS/src/perlmods/lib/OpenILS/WWW/EGCatLoader/Account.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Open-ILS/src/perlmods/lib/OpenILS/WWW/EGCatLoader/Account.pm b/Open-ILS/src/perlmods/lib/OpenILS/WWW/EGCatLoader/Account.pm index f261bdf988..fa36a420d3 100644 --- a/Open-ILS/src/perlmods/lib/OpenILS/WWW/EGCatLoader/Account.pm +++ b/Open-ILS/src/perlmods/lib/OpenILS/WWW/EGCatLoader/Account.pm @@ -2331,7 +2331,7 @@ sub load_myopac_payment_form { my $intent = $stripe->api('post', 'payment_intents', amount => $self->ctx->{fines}->{balance_owed} * 100, currency => $currency || 'usd', - description => 'PINES User Database ID: ' . $self->ctx->{user}->card + description => 'PINES User Database ID: ' . $self->ctx->{user}->id ); if ($stripe->success) { $self->ctx->{stripe_client_secret} = $stripe->success()->{client_secret}; -- 2.11.0