From 7e8c79c64697ff012d7fb4419e07e8ad0e297498 Mon Sep 17 00:00:00 2001 From: Ludovic Marcotte Date: Wed, 20 May 2015 13:51:16 -0400 Subject: [PATCH] (fix) use the contact-info, not the user/group bit identifier --- UI/WebServerResources/AdministrationUI.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/UI/WebServerResources/AdministrationUI.js b/UI/WebServerResources/AdministrationUI.js index a22f9d8d1..961beedf9 100644 --- a/UI/WebServerResources/AdministrationUI.js +++ b/UI/WebServerResources/AdministrationUI.js @@ -80,8 +80,8 @@ function addUserLineToTree(tree, parent, line) { var icon = ResourcesURL + '/busy.gif'; var email = line[1] + " <" + line[2] + ">"; - if (line[3] && !line[3].empty()) - email += ", " + line[3]; // extra contact info + if (line[4] && !line[4].empty()) + email += ", " + line[4]; // extra contact info tree.add(parent, 0, email, 0, '#', line[0], 'person', '', '', ResourcesURL + '/abcard.png',