Skip to content

Commit

Permalink
Merge pull request #53 from Snickser/dev
Browse files Browse the repository at this point in the history
Dev
  • Loading branch information
Snickser authored Dec 13, 2024
2 parents 08902ad + c4e69f5 commit 38f7fc2
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion lang/en/paygw_payanyway.php
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@
$string['privacy:metadata:paygw_payanyway:email'] = 'Email';
$string['privacy:metadata:paygw_payanyway:payanyway_plus'] = 'Send json data';
$string['privacy:metadata:paygw_payanyway:invoiceid'] = 'Invoice id';
$string['privacy:metadata:paygw_payanyway:courceid'] = 'Cource id';
$string['privacy:metadata:paygw_payanyway:courseid'] = 'Course id';
$string['privacy:metadata:paygw_payanyway:groupnames'] = 'Group names';
$string['privacy:metadata:paygw_payanyway:success'] = 'Status';

Expand Down
4 changes: 2 additions & 2 deletions pay.php
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@

$cost = helper::get_rounded_cost($payable->get_amount(), $payable->get_currency(), $surcharge);

// Check self cost.
if (!empty($costself)) {
// Check self cost if not fixcost.
if (!empty($costself) && !$config->fixcost) {
$cost = $costself;
}

Expand Down
4 changes: 2 additions & 2 deletions version.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@

defined('MOODLE_INTERNAL') || die();

$plugin->version = 2024121300;
$plugin->version = 2024121301;
$plugin->requires = 2023100900;
$plugin->component = 'paygw_payanyway';
$plugin->release = '1.2';
$plugin->release = '1.3';
$plugin->maturity = MATURITY_STABLE;

0 comments on commit 38f7fc2

Please sign in to comment.