Browse Source

玩家反馈表名修改

cyzhao 3 years ago
parent
commit
6363fe3028
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Gameserver/Amfphp/process/UserProc.php

+ 1 - 1
Gameserver/Amfphp/process/UserProc.php

@@ -74,7 +74,7 @@ class UserProc {
      */
     static function insertUserCtxBack($userID,$zoneid,$ctx,$phoneId,$type) {
         $paydb = daoInst();              
-        $sql = "INSERT INTO `tab_userCtxBack` (tid,uid,zoneid,ctx,phoneId,type) VALUES (null,'%s',%d,'%s','%s','%s')";
+        $sql = "INSERT INTO `tab_userctxback` (tid,uid,zoneid,ctx,phoneId,type) VALUES (null,'%s',%d,'%s','%s','%s')";
         $query = sprintf($sql,$userID,$zoneid,$ctx,$phoneId,$type);     
         $result = $paydb->exec($query);          
         return $result;