Skip to content

Commit

Permalink
CIVIEWAY-248 Fix incorrect spelt entity parameter and replace some do…
Browse files Browse the repository at this point in the history
…uble-quotes
  • Loading branch information
agileware-justin committed Oct 3, 2023
1 parent 6298c17 commit db2b35d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions eWAYRecurring.php
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ function ewayrecurring_civicrm_managed(&$entities) {
'description' => 'Process pending and scheduled payments in the eWay_Recurring processor',
'api_entity' => 'Job',
'api_action' => 'run_payment_cron',
'parameters' => "processor_name=eWay_Recurring",
'parameters' => 'processor_name=eWay_Recurring',
'is_active' => '1',
],
];
Expand Down Expand Up @@ -134,7 +134,7 @@ function ewayrecurring_civicrm_managed(&$entities) {
'description' => 'Process pending transaction verifications in the eWay_Recurring processor',
'api_entity' => 'EwayContributionTransactions',
'api_action' => 'validate',
'parameters' => "",
'parameters' => '',
'is_active' => '1',
],
];
Expand All @@ -150,7 +150,7 @@ function ewayrecurring_civicrm_managed(&$entities) {
'description' => 'Loops through PaymentTokens for eWAY Recurring linked PaymentTokens that are missing expiry date or masked card number and queries eWAY Rapid API to fill these details in',
'api_entity' => 'EwayRecurring',
'api_action' => 'fillTokensMeta',
'paramters' => '',
'parameters' => '',
'is_active' => '1',
],
];
Expand Down Expand Up @@ -349,7 +349,7 @@ function ewayrecurring_civicrm_coreResourceList(&$list, $region) {
Civi::resources()->addScriptFile('au.com.agileware.ewayrecurring', 'js/eway.js', [ 'region' => $region, 'weight' => 9 ]);
$result = civicrm_api3('PaymentProcessorType', 'get', [
'sequential' => 1,
'name' => "eWay_Recurring",
'name' => 'eWay_Recurring',
'api.PaymentProcessor.get' => ['payment_processor_type_id' => "\$value.id"],
]);
if ($result['is_error'] || $result['values'][0]['api.PaymentProcessor.get']['is_error']) {
Expand Down
4 changes: 2 additions & 2 deletions info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
<email>[email protected]</email>
</maintainer>
<develStage>stable</develStage>
<releaseDate>2023-08-09</releaseDate>
<version>2.6.1</version>
<releaseDate>2023-10-03</releaseDate>
<version>2.6.2</version>
<compatibility>
<ver>5.38</ver>
</compatibility>
Expand Down

0 comments on commit db2b35d

Please sign in to comment.