diff options
author | Mario <mario@mariovavti.com> | 2021-03-18 19:41:12 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2021-03-18 19:41:12 +0000 |
commit | 3ac27d800455f9603d2a8093159aa81033335a9f (patch) | |
tree | 4f617e575f391b6729ee807ea5732f9d7595b128 /Zotlabs/Module | |
parent | 854a6e378703d096e8c9c4910600d3da6e854a5c (diff) | |
download | volse-hubzilla-3ac27d800455f9603d2a8093159aa81033335a9f.tar.gz volse-hubzilla-3ac27d800455f9603d2a8093159aa81033335a9f.tar.bz2 volse-hubzilla-3ac27d800455f9603d2a8093159aa81033335a9f.zip |
air: display the verification status in the notifications
Diffstat (limited to 'Zotlabs/Module')
-rw-r--r-- | Zotlabs/Module/Admin/Accounts.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Zotlabs/Module/Admin/Accounts.php b/Zotlabs/Module/Admin/Accounts.php index eab3f15c8..856ff9155 100644 --- a/Zotlabs/Module/Admin/Accounts.php +++ b/Zotlabs/Module/Admin/Accounts.php @@ -203,6 +203,7 @@ class Accounts { if(!$pending[$n]['reg_vfd'] && $pending[$n]['reg_expires'] < datetime_convert()) $pending[$n]['status'] = t('Expired'); + // timezone adjust date_time for display $pending[$n]['reg_created'] = datetime_convert('UTC', date_default_timezone_get(), $pending[$n]['reg_created']); $pending[$n]['reg_startup'] = datetime_convert('UTC', date_default_timezone_get(), $pending[$n]['reg_startup']); $pending[$n]['reg_expires'] = datetime_convert('UTC', date_default_timezone_get(), $pending[$n]['reg_expires']); @@ -272,7 +273,7 @@ class Accounts { '$sel_deny' => t('Deny selected'), '$sel_aprv' => t('Approve selected'), '$h_pending' => t('Registrations waiting for confirm'), - '$th_pending' => array( t('Request date'), t('Status'), t('Timeframe'), 'dId2', t('specified,atip') ), + '$th_pending' => array( t('Request date'), t('Verification status'), t('Timeframe'), 'dId2', t('specified,atip') ), '$no_pending' => t('No registrations.'), '$approve' => t('Approve'), '$deny' => t('Deny'), |