1
This commit is contained in:
parent
c8fc15f587
commit
80346322cf
@ -761,17 +761,15 @@ EOD;
|
|||||||
|
|
||||||
private function doReturn($gameDbConn, $row)
|
private function doReturn($gameDbConn, $row)
|
||||||
{
|
{
|
||||||
echo json_encode($row);
|
|
||||||
return;
|
|
||||||
{
|
{
|
||||||
$row = SqlHelper::ormSelectOne(
|
$tmpRow = SqlHelper::ormSelectOne(
|
||||||
$gameDbConn,
|
$gameDbConn,
|
||||||
't_gold_bullion_return',
|
't_gold_bullion_return',
|
||||||
array(
|
array(
|
||||||
'account_id' => $row['src_account_id'],
|
'account_id' => $row['src_account_id'],
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
if (!empty($row)) {
|
if (!empty($tmpRow)) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user