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'] . "";