Skip to content

Commit

Permalink
Merge pull request #26 from dondominio/Version-2.2.13
Browse files Browse the repository at this point in the history
Version 2.2.13
  • Loading branch information
JAndreuSoler authored Mar 31, 2023
2 parents 849b95b + 46c2e42 commit f76f42a
Show file tree
Hide file tree
Showing 9 changed files with 20 additions and 12 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG-en.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [2.2.13] - 2023-03-31
### fixed
- PHP8 TypeError.

## [2.2.12] - 2023-03-14
### fixed
- UpdateClientDomain Error.
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG-es.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ y este proyecto se adhiere a [Semantic Versioning](https://semver.org/spec/v2.0.

## [Pendiente por lanzar]

## [2.2.13] - 2023-03-31
### fixed
- PHP8 TypeError.

## [2.2.12] - 2023-03-14
### fixed
- UpdateClientDomain Error.
Expand Down
2 changes: 1 addition & 1 deletion README-en.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ This project has all the developed integrations between MrDomain and WHMCS.
## Status
| Version |
|:--------|
| 2.2.12 |
| 2.2.13 |

## Requirements
| Name | Version |
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Este proyecto contiene todos los módulos desarrollados entre DonDominio y WHMCS
## Estado
| Version |
|:--------|
| 2.2.12 |
| 2.2.13 |

## Requerimientos
| Name | Version |
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "dondominio/whmcs",
"description": "DonDominio - WHCMCS Modules Integration",
"version": "2.2.12",
"version": "2.2.13",
"license": "LGPL-3.0-only",
"type": "project",
"minimum-stability": "dev",
Expand Down
6 changes: 3 additions & 3 deletions src/modules/addons/dondominio/lib/Services/WHMCS_Service.php
Original file line number Diff line number Diff line change
Expand Up @@ -955,7 +955,7 @@ public function savePricingsForEur(Pricing_Model $tld)
$register[$i - 1] = $register_price * $i;
}
} else {
$register[$term - 1] = $register_price * $term;
$register[(int) $term - 1] = $register_price * (int) $term;
}
}

Expand All @@ -970,7 +970,7 @@ public function savePricingsForEur(Pricing_Model $tld)
$transfer[$i - 1] = $transfer_price * $i;
}
}else{
$transfer[$term - 1] = $transfer_price * $term;
$transfer[(int) $term - 1] = $transfer_price * (int) $term;
}
}

Expand All @@ -985,7 +985,7 @@ public function savePricingsForEur(Pricing_Model $tld)
$renew[$i - 1] = $renew_price * $i;
}
}else{
$renew[$term - 1] = $renew_price * $term;
$renew[(int) $term - 1] = $renew_price * (int) $term;
}
}

Expand Down
4 changes: 2 additions & 2 deletions src/modules/addons/dondominio/version.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"version": "2.2.12",
"releaseDate": "2023-03-14"
"version": "2.2.13",
"releaseDate": "2023-03-31"
}
4 changes: 2 additions & 2 deletions src/modules/registrars/dondominio/version.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"version": "2.2.12",
"releaseDate": "2023-03-14"
"version": "2.2.13",
"releaseDate": "2023-03-31"
}
4 changes: 2 additions & 2 deletions src/modules/servers/dondominiossl/version.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"version": "2.2.12",
"releaseDate": "2023-03-14"
"version": "2.2.13",
"releaseDate": "2023-03-31"
}

0 comments on commit f76f42a

Please sign in to comment.