Skip to content

Commit

Permalink
Fix SQL error on transactions log introduced in 2.1.3.
Browse files Browse the repository at this point in the history
  • Loading branch information
Skouat committed May 3, 2020
1 parent 219c336 commit 6682779
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"type": "phpbb-extension",
"description": "An extension which adds a PayPal donation page to your phpBB board",
"homepage": "https://skouat.github.io/ext_paypal_donation",
"version": "2.1.3",
"version": "2.1.4",
"keywords": [
"phpbb",
"extension",
Expand Down
2 changes: 1 addition & 1 deletion operators/transactions.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public function build_sql_data($transaction_id = 0)
{
// Build main sql request
$sql_ary = array(
'SELECT' => 'tnx.*, u.username, u.user_colour',
'SELECT' => 'txn.*, u.username, u.user_colour',
'FROM' => array($this->ppde_transactions_log_table => 'txn'),
'LEFT_JOIN' => array(
array(
Expand Down

0 comments on commit 6682779

Please sign in to comment.