summaryrefslogtreecommitdiffstats
path: root/ldap-site-mngmt/webinterface/au/au_childs.php
diff options
context:
space:
mode:
Diffstat (limited to 'ldap-site-mngmt/webinterface/au/au_childs.php')
-rw-r--r--ldap-site-mngmt/webinterface/au/au_childs.php7
1 files changed, 3 insertions, 4 deletions
diff --git a/ldap-site-mngmt/webinterface/au/au_childs.php b/ldap-site-mngmt/webinterface/au/au_childs.php
index fe91a5c5..7aa5dcb3 100644
--- a/ldap-site-mngmt/webinterface/au/au_childs.php
+++ b/ldap-site-mngmt/webinterface/au/au_childs.php
@@ -1,14 +1,12 @@
<?php
include('../standard_header.inc.php');
-include("../class.FastTemplate.php");
# Filename of Template
$webseite = "au_childs.dwt";
include('au_header.inc.php');
-
###############################################################################
# Menus
@@ -18,7 +16,6 @@ $sbmnr = -1;
createMainMenu($rollen, $mainnr);
createAUMenu($rollen, $mnr, $auDN, $sbmnr);
-
###############################################################################
# Mainpage Data
@@ -33,7 +30,9 @@ $childau_array = get_childau($auDN,array("dn","cn","ou","associateddomain","desc
$template->define_dynamic("Childaus", "Webseite");
foreach ($childau_array as $childau){
- $template->assign(array("CHILDOU" => $childau['ou'],
+ $auname = "<a href='child_au.php?dn=".$childau['dn']."' class='headerlink'>".$childau['ou']."</a>";
+
+ $template->assign(array("CHILDOU" => $auname,
"CHILDCN" => $childau['cn'],
"CHILDDN" => $childau['dn'],
"CHILDDOMAIN" => $childau['associateddomain'],