Authored by hf

code review by hf: fixes bug to coupon newuser second times

@@ -632,9 +632,9 @@ class CouponController extends HuodongAction @@ -632,9 +632,9 @@ class CouponController extends HuodongAction
632 } 632 }
633 633
634 /* 判断用户是否登录 */ 634 /* 判断用户是否登录 */
635 - $uid = $this->getSession(self::SESSION_UID); 635 + $uid = $this->getUid();
636 if (!$uid) { 636 if (!$uid) {
637 - $uid = $this->getUid(); 637 + $uid = $this->getSession(self::SESSION_UID);
638 if (!$uid) { 638 if (!$uid) {
639 $result['code'] = 400; 639 $result['code'] = 400;
640 $result['message'] = '请先登录'; 640 $result['message'] = '请先登录';