diff --git a/webapp/controller/RechargeController.class.php b/webapp/controller/RechargeController.class.php index 0cfbcb9..456eaed 100644 --- a/webapp/controller/RechargeController.class.php +++ b/webapp/controller/RechargeController.class.php @@ -627,11 +627,11 @@ class RechargeController $firstrecharge = $rechargerow['first_data']; } if ($rechargerow['vip_info'] != null && $rechargerow['vip_info'] != '') { - $vipinfo = json_encode($rechargerow['vip_info']); + $vipinfo = json_decode($rechargerow['vip_info']); } if ($rechargerow['daily_purchase'] != null && $rechargerow['daily_purchase'] != '') { - $dailypurchase = json_encode($rechargerow['daily_purchase']); + $dailypurchase = json_decode($rechargerow['daily_purchase']); } }