From 7d4b5ea46b97dd021913672aada2486793a1ac2f Mon Sep 17 00:00:00 2001 From: mischa Date: Mon, 5 Sep 2022 21:46:52 +0000 Subject: [PATCH] added Created to admins --- languages/en.lang | 1 + templates/list-admin.tpl | 4 +++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/languages/en.lang b/languages/en.lang index 2def08e..c1a30c4 100644 --- a/languages/en.lang +++ b/languages/en.lang @@ -31,6 +31,7 @@ $LANG['Menu_add_mailbox'] = 'Add Mailbox'; $LANG['Menu_viewlog'] = 'View Log'; $LANG['Menu_logout'] = 'Logout'; +$LANG['List_created'] = 'Created'; $LANG['List_modified'] = 'Last Modified'; $LANG['List_button'] = 'Go'; $LANG['List_up_arrow'] = 'Top'; diff --git a/templates/list-admin.tpl b/templates/list-admin.tpl index 47d31ee..83584d8 100644 --- a/templates/list-admin.tpl +++ b/templates/list-admin.tpl @@ -5,7 +5,8 @@ if (count($list_admins) > 0) { echo " \n"; echo " " . $LANG['AdminList_admin_username'] . "\n"; echo " " . $LANG['AdminList_admin_count'] . "\n"; - echo " " . $LANG['AdminList_admin_modified'] . "\n"; + echo " " . $LANG['List_created'] . "\n"; + echo " " . $LANG['List_modified'] . "\n"; echo "  \n"; echo " \n"; @@ -14,6 +15,7 @@ if (count($list_admins) > 0) { echo " \n"; echo " " . $row['username'] . ""; echo " " . $row['domain_count'] . ""; + echo " " . $row['created'] . ""; echo " " . $row['modified'] . ""; echo " " . $LANG['edit'] . ""; echo " " . $LANG['del'] . "";