Details
-
Type: Bug
-
Status: Closed
-
Priority: Major
-
Resolution: Fixed
-
Affects Version/s: None
-
Fix Version/s: 5.2.2
-
Component/s: None
-
Labels:None
Description
The renewal call for Namesilo doesn't utilize the module row payment ID. It should.
Change components/modules/namesilo/namesilo.php around line 463 from:
$vars = [ 'domain' => $fields->{'domain'}, 'years' => 1 ];
To
$vars = [
'domain' => $fields->{'domain'},
'years' => 1
];
if (!empty($row->meta->payment_id)) {
$vars['payment_id'] = $row->meta->payment_id;
}