mirror of
https://github.com/standardebooks/web.git
synced 2025-07-12 17:42:29 -04:00
Pretty print SQL
This commit is contained in:
parent
31a8bc2d6c
commit
26a24cdbe2
17 changed files with 316 additions and 82 deletions
|
@ -37,7 +37,12 @@ try{
|
|||
if(sizeof($matches) == 2){
|
||||
$transactionId = $matches[1];
|
||||
|
||||
Db::Query('INSERT into PendingPayments (Created, ChannelId, TransactionId) values (utc_timestamp(), ?, ?);', [PAYMENT_CHANNEL_FA, $transactionId]);
|
||||
Db::Query('
|
||||
INSERT into PendingPayments (Created, ChannelId, TransactionId)
|
||||
values (utc_timestamp(),
|
||||
?,
|
||||
?)
|
||||
', [PAYMENT_CHANNEL_FA, $transactionId]);
|
||||
|
||||
$log->Write('Donation ID: ' . $transactionId);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue