Skip to content

Commit 98905e0

Browse files
author
Cameron Hall
committed
Fixes #6: Get EPP Code functions as intended by displaying the EPP Code
1 parent d4a3e5c commit 98905e0

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,11 @@ Synergy Wholesale WHMCS Domains Module
1515
### Removed
1616
-
1717

18+
## 2.1.1 [Updated 30/03/2020]
19+
### Fixed
20+
- Fixed "Get EPP Code" not displaying the EPP Code on screen. Fixes [#6](https://github.com/SynergyWholesale/WHMCS-Domains-Module/issues/6)
21+
22+
1823
## 2.1.0 [Updated 25/03/2020]
1924
### Added
2025
- Added support for [GetDomainInformation](https://developers.whmcs.com/domain-registrars/domain-information/) method for newer WHMCS 7.6+. This should improve load times by reducing the number of required API calls required.

modules/registrars/synergywholesaledomains/synergywholesaledomains.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1150,7 +1150,7 @@ function synergywholesaledomains_GetEPPCode(array $params)
11501150
try {
11511151
$eppCode = synergywholesaledomains_apiRequest('domainInfo', $params);
11521152
return [
1153-
'eppcode' => $eppCode['eppCode'],
1153+
'eppcode' => $eppCode['domainPassword'],
11541154
];
11551155
} catch (\Exception $e) {
11561156
return [

0 commit comments

Comments
 (0)