Merge branch 'dev' of 47.111.118.107:/srv/git/platform

master
ELF 5 years ago
commit c02c1f8947

@ -214,8 +214,13 @@ class Ipa365Controller extends BaseController{
public function install_show() { public function install_show() {
$orderId = I('order_id', 0); $orderId = I('order_id', 0);
$gameId = I('game_id', 0); $gameId = I('game_id', 0);
$userId = I('user_id', 0);
$userId = $_SESSION['user_id']; $user = M('user', 'tab_')->where(array(
'id' => $userId
))->find();
// $userId = $_SESSION['user_id'];
if (!$userId ) { if (!$userId ) {
$this->error("请登入", "/mobile.php/ssg/login"); $this->error("请登入", "/mobile.php/ssg/login");
} }

Loading…
Cancel
Save