diff --git a/webapp/controller/TempToolsController.class.php b/webapp/controller/TempToolsController.class.php index 3cd4bd29..8d304a30 100644 --- a/webapp/controller/TempToolsController.class.php +++ b/webapp/controller/TempToolsController.class.php @@ -407,4 +407,17 @@ class TempToolsController extends BaseController { } } + public function repairInGameMallMail() + { + $gameDbConn = myself()->_getMysql(''); + $mailDbConn = myself()->_getMailMysql(); + $rows = $gameDbConn->execQuery( + 'SELECT * FROM t_ingame_mall', + array() + ); + foreach ($rows as $row) { + echo json_encode($row); + } + } + }