From 6b3c2ce7d354a9b003193316ceb670edcedd6c6d Mon Sep 17 00:00:00 2001 From: aozhiwei Date: Fri, 9 Aug 2024 11:12:05 +0800 Subject: [PATCH] 1 --- .../AccountVerifyController.class.php | 45 ------------------- 1 file changed, 45 deletions(-) delete mode 100644 webapp/controller/AccountVerifyController.class.php diff --git a/webapp/controller/AccountVerifyController.class.php b/webapp/controller/AccountVerifyController.class.php deleted file mode 100644 index 62f9d36d..00000000 --- a/webapp/controller/AccountVerifyController.class.php +++ /dev/null @@ -1,45 +0,0 @@ -_rspErr(1, 'guest_account error'); - return; - } - { - $row = SqlHelper::ormSelectOne( - myself()->_getMysql(''), - 't_user', - array( - 'account_id' => $guestAccount - )); - if (!$row) { - myself()->_rspErr(1, 'guest_account not found'); - return; - } - } - { - $row = SqlHelper::ormSelectOne( - myself()->_getMysql(''), - 't_user', - array( - 'account_id' => BC_POLY_CHANNEL . '_2006_' . $targetPlat . '_' . $targetAccount - )); - if ($row) { - myself()->_rspErr(1, 'cannot bind'); - return; - } - } - } - -}