summaryrefslogtreecommitdiffstats
path: root/ldap-site-mngmt/webinterface/start.php
diff options
context:
space:
mode:
Diffstat (limited to 'ldap-site-mngmt/webinterface/start.php')
-rw-r--r--ldap-site-mngmt/webinterface/start.php6
1 files changed, 4 insertions, 2 deletions
diff --git a/ldap-site-mngmt/webinterface/start.php b/ldap-site-mngmt/webinterface/start.php
index 413d1e4a..d0d34320 100644
--- a/ldap-site-mngmt/webinterface/start.php
+++ b/ldap-site-mngmt/webinterface/start.php
@@ -37,9 +37,10 @@ foreach ($roles as $item){
$expDN = explode(',',$auDN);
$expOU = explode('=',$expDN[0]);
$au = $expOU[1];
+ $audata = get_au_data($auDN,array("cn","description"));
- $template->assign(array( "MA" => "", "HA" => "", "DA" => "", "ZA" => "", "RA" => ""));
- $template->assign(array( "AU" => $au, "AUDN" => $auDN, "ROLLEN" => implode('_',$item['role'])));
+ $template->assign(array( "CN" => "","MA" => "", "HA" => "", "DA" => "", "ZA" => "", "RA" => ""));
+ $template->assign(array( "AU" => $au, "AUDN" => $auDN, "CN" => $audata[0]['cn'], "ROLLEN" => implode('_',$item['role'])));
$rollen = "";
foreach ($item['role'] as $role){
@@ -78,4 +79,5 @@ $template->parse("PAGE", "Vorlage");
# Fertige Seite an den Browser senden
$template->FastPrint("PAGE");
+
?>