added Created to admins

This commit is contained in:
mischa 2022-09-05 21:46:52 +00:00
parent f9c77d55a9
commit 7d4b5ea46b
2 changed files with 4 additions and 1 deletions

View File

@ -31,6 +31,7 @@ $LANG['Menu_add_mailbox'] = 'Add Mailbox';
$LANG['Menu_viewlog'] = 'View Log'; $LANG['Menu_viewlog'] = 'View Log';
$LANG['Menu_logout'] = 'Logout'; $LANG['Menu_logout'] = 'Logout';
$LANG['List_created'] = 'Created';
$LANG['List_modified'] = 'Last Modified'; $LANG['List_modified'] = 'Last Modified';
$LANG['List_button'] = 'Go'; $LANG['List_button'] = 'Go';
$LANG['List_up_arrow'] = 'Top'; $LANG['List_up_arrow'] = 'Top';

View File

@ -5,7 +5,8 @@ if (count($list_admins) > 0) {
echo " <tr class=\"header\">\n"; echo " <tr class=\"header\">\n";
echo " <td>" . $LANG['AdminList_admin_username'] . "</td>\n"; echo " <td>" . $LANG['AdminList_admin_username'] . "</td>\n";
echo " <td>" . $LANG['AdminList_admin_count'] . "</td>\n"; echo " <td>" . $LANG['AdminList_admin_count'] . "</td>\n";
echo " <td>" . $LANG['AdminList_admin_modified'] . "</td>\n"; echo " <td>" . $LANG['List_created'] . "</td>\n";
echo " <td>" . $LANG['List_modified'] . "</td>\n";
echo " <td colspan=\"2\">&nbsp;</td>\n"; echo " <td colspan=\"2\">&nbsp;</td>\n";
echo " </tr>\n"; echo " </tr>\n";
@ -14,6 +15,7 @@ if (count($list_admins) > 0) {
echo " <tr class=\"hilightoff\" onMouseOver=\"className='hilighton';\" onMouseOut=\"className='hilightoff';\">\n"; echo " <tr class=\"hilightoff\" onMouseOver=\"className='hilighton';\" onMouseOut=\"className='hilightoff';\">\n";
echo " <td><a href=\"list-domain.php?username=" . $row['username'] . "\">" . $row['username'] . "</a></td>"; echo " <td><a href=\"list-domain.php?username=" . $row['username'] . "\">" . $row['username'] . "</a></td>";
echo " <td>" . $row['domain_count'] . "</td>"; echo " <td>" . $row['domain_count'] . "</td>";
echo " <td>" . $row['created'] . "</td>";
echo " <td>" . $row['modified'] . "</td>"; echo " <td>" . $row['modified'] . "</td>";
echo " <td><a href=\"admin.php?action=edit&username=" . $row['username'] . "\">" . $LANG['edit'] . "</a></td>"; echo " <td><a href=\"admin.php?action=edit&username=" . $row['username'] . "\">" . $LANG['edit'] . "</a></td>";
echo " <td><a href=\"delete.php?table=admin&where=username&delete=" . $row['username'] . "\" onclick=\"return confirm ('" . $LANG['confirm'] . $LANG['AdminList_admin_username'] . ": " . $row['username'] . "')\">" . $LANG['del'] . "</a></td>"; echo " <td><a href=\"delete.php?table=admin&where=username&delete=" . $row['username'] . "\" onclick=\"return confirm ('" . $LANG['confirm'] . $LANG['AdminList_admin_username'] . ": " . $row['username'] . "')\">" . $LANG['del'] . "</a></td>";