From ec6bb766c1a645cacdb321d9e385f22baae78557 Mon Sep 17 00:00:00 2001 From: dev-chiefworks Date: Mon, 9 May 2022 05:39:17 -0400 Subject: [PATCH] Saved cards --- app/Models/userCards.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/Models/userCards.php b/app/Models/userCards.php index 1cb70fb..0df2f7e 100644 --- a/app/Models/userCards.php +++ b/app/Models/userCards.php @@ -238,7 +238,7 @@ $vl=''; $this->logArray2("card lines total => ".$ic); $suffix = str_pad($ic, 5, '0', STR_PAD_LEFT); $out['name_' . $suffix] = $f['name']; - $out['assign_id_' . $suffix] = $f['assign_id']; + $out['assign_id_' . $suffix] = $f['saved_card_id']; $out['card_id_' . $suffix] = $f['card_id']; $out['can_save_' . $suffix] = $f['can_save']; $out['short_title_' . $suffix] = $f['short_title']; @@ -262,7 +262,7 @@ $vl=''; $out['card_behavior_' . $suffix] = $f['card_behavior']; $out['card_type_' . $suffix] = $f['card_type']; $out['card_time_' . $suffix] = $f['card_time']; - $out['card_country_' . $suffix] = $f['card_country']; + $out['card_country_' . $suffix] = 'US'; // $f['card_country']; for now $out['card_location_' . $suffix] = $f['card_location']; $out['latitude_' . $suffix] = $f['latitude']; $out['longitude_' . $suffix] = $f['longitude'];