mirror of
https://github.com/getnamingo/registry.git
synced 2025-07-01 16:43:26 +02:00
Fixes for applications in CP
This commit is contained in:
parent
7522bdd4df
commit
160d61bab6
2 changed files with 45 additions and 16 deletions
|
@ -364,9 +364,7 @@ class ApplicationsController extends Controller
|
|||
'reid' => null,
|
||||
'redate' => null,
|
||||
'acid' => null,
|
||||
'acdate' => null,
|
||||
'rgpstatus' => null,
|
||||
'addPeriod' => null,
|
||||
'acdate' => null,
|
||||
'authtype' => 'pw',
|
||||
'authinfo' => $authInfo,
|
||||
'phase_name' => $phaseName,
|
||||
|
@ -1087,7 +1085,17 @@ class ApplicationsController extends Controller
|
|||
|
||||
try {
|
||||
$db->beginTransaction();
|
||||
|
||||
|
||||
$db->update(
|
||||
'application_status',
|
||||
[
|
||||
'status' => 'allocated'
|
||||
],
|
||||
[
|
||||
'domain_id' => $domain['id']
|
||||
]
|
||||
);
|
||||
|
||||
$currentDateTime = new \DateTime();
|
||||
$crdate = $currentDateTime->format('Y-m-d H:i:s.v'); // Current timestamp
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue