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'];