@@ -206,6 +206,8 @@
USERNAME |
ADMIN |
+ PASSTHROUGH IP |
+ IP |
ACTIONS |
diff --git a/admin/showUserList.php b/admin/showUserList.php
index bfcff2e..ad1049d 100644
--- a/admin/showUserList.php
+++ b/admin/showUserList.php
@@ -25,10 +25,12 @@
else {
//--------------------------------------------------------
// Create the list of users as a table content
- foreach ($userList as $userName => $isAdmin) {
+ foreach ($userList as $userName => $params) {
echo "";
echo "".$userName." | ";
- echo "".(($isAdmin === 0)? "No" : "Yes")." | ";
+ echo "".(($params['ISADMIN'] === 0)? "No" : "Yes")." | ";
+ echo "".(($params['PASSTHROUGH'] === 0)? "No" : "Yes")." | ";
+ echo "".$params['IP']." | ";
echo "";
echo " |