diff --git a/Application/Home/Controller/HomeController.class.php b/Application/Home/Controller/HomeController.class.php index 4dd36a07b..51d0fb551 100644 --- a/Application/Home/Controller/HomeController.class.php +++ b/Application/Home/Controller/HomeController.class.php @@ -196,7 +196,7 @@ class HomeController extends Controller $promote = M('promote', 'tab_')->field(['id', 'parent_id', 'chain', 'level'])->where(['id' => $promoteId])->find(); if (!$applyService->checkSociatyPerm($promote, $game)) { - $this->error('该链接已经停止使用'); + $this->error('该链接已经失效'); } if ($game['sdk_version'] == 1 && $isIOS) { diff --git a/Application/Home/Controller/PackageController.class.php b/Application/Home/Controller/PackageController.class.php index b7c4160a5..37364c1cc 100644 --- a/Application/Home/Controller/PackageController.class.php +++ b/Application/Home/Controller/PackageController.class.php @@ -67,7 +67,7 @@ class PackageController extends Controller $promote = M('promote', 'tab_')->field(['id', 'parent_id', 'chain', 'level'])->where(['id' => $promoteId])->find(); $game = M('game','tab_')->field(['id', 'game_name', 'sdk_version', 'apply_auth'])->where(['id' => $apply['game_id']])->find(); if (!$applyService->checkSociatyPerm($promote, $game)) { - $this->redirect("package/downloadError", ['message' => '该链接已经停止使用']); + $this->redirect("package/downloadError", ['message' => '该链接已经失效']); }