Fixed authinfo not showing in panel

This commit is contained in:
Pinga 2023-12-13 07:58:02 +02:00
parent b9cab663e0
commit 9f012aa769
3 changed files with 52 additions and 12 deletions

View file

@ -783,7 +783,7 @@ class DomainsController extends Controller
[ $domain['registrant'] ]);
$domainStatus = $db->select('SELECT status FROM domain_status WHERE domain_id = ?',
[ $domain['id'] ]);
$domainAuth = $db->selectRow('SELECT authinfo FROM domain_authInfo WHERE domain_id = ?',
$domainAuth = $db->selectRow('SELECT * FROM domain_authInfo WHERE domain_id = ?',
[ $domain['id'] ]);
$domainSecdns = $db->select('SELECT * FROM secdns WHERE domain_id = ?',
[ $domain['id'] ]);