1
This commit is contained in:
parent
a13d1b11e6
commit
d00f69ea3e
@ -8,8 +8,10 @@ class CallbackController extends BaseController {
|
|||||||
|
|
||||||
public function dispatch()
|
public function dispatch()
|
||||||
{
|
{
|
||||||
|
error_log("CallbackController Begin");
|
||||||
$action = getReqVal('action', '');
|
$action = getReqVal('action', '');
|
||||||
if (key_exists($action, $this->handlers)) {
|
if (key_exists($action, $this->handlers)) {
|
||||||
|
error_log("Callback:dispatch____". json_encode($_REQUEST));
|
||||||
$this->internalDispatch($this->handlers[$action]);
|
$this->internalDispatch($this->handlers[$action]);
|
||||||
} else {
|
} else {
|
||||||
$this->_rspErr(500, 'not found');
|
$this->_rspErr(500, 'not found');
|
||||||
|
@ -14,6 +14,7 @@ class GameItemMallBuyOk {
|
|||||||
{
|
{
|
||||||
$address = getReqVal('address', '');
|
$address = getReqVal('address', '');
|
||||||
$orderId = getReqVal('orderId', '');
|
$orderId = getReqVal('orderId', '');
|
||||||
|
error_log("GameItemMallBuyOk");
|
||||||
|
|
||||||
$orderDb = SqlHelper::ormSelectOne(
|
$orderDb = SqlHelper::ormSelectOne(
|
||||||
myself()->_getMysql($address),
|
myself()->_getMysql($address),
|
||||||
|
Loading…
x
Reference in New Issue
Block a user