diff --git a/lam/templates/lists/listdomains.php b/lam/templates/lists/listdomains.php index 2f839e41..b7a0c64e 100644 --- a/lam/templates/lists/listdomains.php +++ b/lam/templates/lists/listdomains.php @@ -82,8 +82,8 @@ $desc_array; // list of descriptions for the attributes $attr_array[] = "sambaDomainName"; $attr_array[] = "sambaSID"; $attr_array[] = "dn"; -$desc_array[] = _("Domain Name"); -$desc_array[] = _("Domain SID"); +$desc_array[] = strtoupper(_("Domain name")); +$desc_array[] = strtoupper(_("Domain SID")); $desc_array[] = "DN"; // check search suffix diff --git a/lam/templates/lists/listgroups.php b/lam/templates/lists/listgroups.php index 9267fc74..480b8baf 100644 --- a/lam/templates/lists/listgroups.php +++ b/lam/templates/lists/listgroups.php @@ -88,13 +88,13 @@ for ($i = 0; $i < sizeof($temp_array); $i++) { if (substr($temp_array[$i],0,1) == "#") { $attr = substr($temp_array[$i],1); $attr_array[$i] = $attr; - $desc_array[] = $hash_table[$attr]; + $desc_array[] = strtoupper($hash_table[$attr]); } // if not predefined, the attribute is seperated by a ":" from description else { $attr = explode(":", $temp_array[$i]); $attr_array[$i] = $attr[0]; - $desc_array[$i] = $attr[1]; + $desc_array[$i] = strtoupper($attr[1]); } } diff --git a/lam/templates/lists/listhosts.php b/lam/templates/lists/listhosts.php index 5870e29b..dd5e343a 100644 --- a/lam/templates/lists/listhosts.php +++ b/lam/templates/lists/listhosts.php @@ -88,13 +88,13 @@ for ($i = 0; $i < sizeof($temp_array); $i++) { if (substr($temp_array[$i],0,1) == "#") { $attr = substr($temp_array[$i],1); $attr_array[$i] = $attr; - $desc_array[] = $hash_table[$attr]; + $desc_array[] = strtoupper($hash_table[$attr]); } // if not predefined, the attribute is seperated by a ":" from description else { $attr = explode(":", $temp_array[$i]); $attr_array[$i] = $attr[0]; - $desc_array[$i] = $attr[1]; + $desc_array[$i] = strtoupper($attr[1]); } } diff --git a/lam/templates/lists/listusers.php b/lam/templates/lists/listusers.php index 6633412d..6da20ed1 100644 --- a/lam/templates/lists/listusers.php +++ b/lam/templates/lists/listusers.php @@ -85,13 +85,13 @@ for ($i = 0; $i < sizeof($temp_array); $i++) { if (substr($temp_array[$i],0,1) == "#") { $attr = substr($temp_array[$i],1); $attr_array[$i] = $attr; - $desc_array[] = $hash_table[$attr]; + $desc_array[] = strtoupper($hash_table[$attr]); } // if not predefined, the attribute is seperated by a ":" from description else { $attr = explode(":", $temp_array[$i]); $attr_array[$i] = $attr[0]; - $desc_array[$i] = $attr[1]; + $desc_array[$i] = strtoupper($attr[1]); } }