From: cajus Date: Tue, 4 Apr 2006 10:48:20 +0000 (+0000) Subject: Fixed object lock output for comma attached dn's X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=065d9d361c89e9aee3df8e032fa1b0524228c564;p=gosa.git Fixed object lock output for comma attached dn's git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@2975 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/plugins/admin/applications/main.inc b/plugins/admin/applications/main.inc index 1688597f6..7a3823c92 100644 --- a/plugins/admin/applications/main.inc +++ b/plugins/admin/applications/main.inc @@ -35,7 +35,7 @@ if ($remove_lock){ /* Page header*/ if (isset($_SESSION['objectinfo'])){ - $display= print_header(get_template_path('images/application.png'), _("Application management"), "\"\" ".$_SESSION['objectinfo']); + $display= print_header(get_template_path('images/application.png'), _("Application management"), "\"\" ".@ldap::fix($_SESSION['objectinfo'])); } else { $display= print_header(get_template_path('images/application.png'), _("Application management")); } diff --git a/plugins/admin/departments/main.inc b/plugins/admin/departments/main.inc index dfe4471f4..e0ec1e3a3 100644 --- a/plugins/admin/departments/main.inc +++ b/plugins/admin/departments/main.inc @@ -35,7 +35,7 @@ if ($remove_lock){ /* Page header*/ if (isset($_SESSION['objectinfo'])){ - $display= print_header(get_template_path('images/department.png'), _("Department management"), "\"\" ".$_SESSION['objectinfo']); + $display= print_header(get_template_path('images/department.png'), _("Department management"), "\"\" ".@ldap::fix($_SESSION['objectinfo'])); } else { $display= print_header(get_template_path('images/department.png'), _("Department management")); } diff --git a/plugins/admin/fai/main.inc b/plugins/admin/fai/main.inc index 61a919e15..1e71cbcf3 100644 --- a/plugins/admin/fai/main.inc +++ b/plugins/admin/fai/main.inc @@ -35,7 +35,7 @@ if ($remove_lock){ /* Page header*/ if (isset($_SESSION['objectinfo'])){ - $display= print_header(get_template_path('images/fai.png'), _("Fully Automatic Installation"), "\"\" ".$_SESSION['objectinfo']); + $display= print_header(get_template_path('images/fai.png'), _("Fully Automatic Installation"), "\"\" ".@ldap::fix($_SESSION['objectinfo'])); } else { $display= print_header(get_template_path('images/fai.png'), _("Fully Automatic Installation")); } diff --git a/plugins/admin/groups/main.inc b/plugins/admin/groups/main.inc index c3f8c58ad..1cd235453 100644 --- a/plugins/admin/groups/main.inc +++ b/plugins/admin/groups/main.inc @@ -38,7 +38,7 @@ if ($remove_lock){ $display= print_header(get_template_path('images/group.png'), _("Group administration"), "\"\" ". - $_SESSION['objectinfo']); + @ldap::fix($_SESSION['objectinfo'])); } else { $display= print_header(get_template_path('images/group.png'), _("Group administration")); } diff --git a/plugins/admin/ogroups/main.inc b/plugins/admin/ogroups/main.inc index ae6fdc353..bbe03d5e9 100644 --- a/plugins/admin/ogroups/main.inc +++ b/plugins/admin/ogroups/main.inc @@ -34,7 +34,7 @@ if (!$remove_lock){ _("Object groups"), "\"\" ".$_SESSION['objectinfo']); + "\"> ".@ldap::fix($_SESSION['objectinfo'])); } else { $display= print_header(get_template_path('images/ogroup.png'), _("Object groups")); } diff --git a/plugins/admin/systems/main.inc b/plugins/admin/systems/main.inc index a0f26d1cc..9061edcea 100644 --- a/plugins/admin/systems/main.inc +++ b/plugins/admin/systems/main.inc @@ -42,7 +42,7 @@ if ($remove_lock){ /* Page header*/ if (isset($_SESSION['objectinfo'])){ - $display= print_header(get_template_path('images/system.png'), _("System management"), "\"\" ".$_SESSION['objectinfo']); + $display= print_header(get_template_path('images/system.png'), _("System management"), "\"\" ".@ldap::fix($_SESSION['objectinfo'])); } else { $display= print_header(get_template_path('images/system.png'), _("System management")); } diff --git a/plugins/admin/users/main.inc b/plugins/admin/users/main.inc index 6c284053d..db1e9e4a3 100644 --- a/plugins/admin/users/main.inc +++ b/plugins/admin/users/main.inc @@ -40,7 +40,7 @@ if ($remove_lock){ _("User administration"), "\"\" ".$_SESSION['objectinfo']); + "\"> ".@ldap::fix($_SESSION['objectinfo'])); } else { $display= print_header(get_template_path('images/user.png'), _("User administration")); diff --git a/plugins/gofax/blocklists/main.inc b/plugins/gofax/blocklists/main.inc index 6bedd267a..24d1b8999 100644 --- a/plugins/gofax/blocklists/main.inc +++ b/plugins/gofax/blocklists/main.inc @@ -17,7 +17,7 @@ if ($remove_lock){ /* Page header*/ if (isset($_SESSION['objectinfo'])){ - $display= print_header(get_template_path('images/blocklists.png'), _("Blocklist management"), "\"\"align=\"middle\" ".$_SESSION['objectinfo']); + $display= print_header(get_template_path('images/blocklists.png'), _("Blocklist management"), "\"\"align=\"middle\" ".@ldap::fix($_SESSION['objectinfo'])); } else { $display= print_header(get_template_path('images/blocklists.png'), _("Blocklist management")); } diff --git a/plugins/gofon/conference/main.inc b/plugins/gofon/conference/main.inc index e276d6f7e..2fe8ade4f 100644 --- a/plugins/gofon/conference/main.inc +++ b/plugins/gofon/conference/main.inc @@ -35,7 +35,7 @@ if ($remove_lock){ /* Page header*/ if (isset($_SESSION['objectinfo'])){ - $display= print_header(get_template_path('images/conference.png'), _("Conference management"), "\"\" ".$_SESSION['objectinfo']); + $display= print_header(get_template_path('images/conference.png'), _("Conference management"), "\"\" ".@ldap::fix($_SESSION['objectinfo'])); } else { $display= print_header(get_template_path('images/conference.png'), _("Conference management")); } diff --git a/plugins/gofon/macro/main.inc b/plugins/gofon/macro/main.inc index aa55d15c8..ba3307e72 100755 --- a/plugins/gofon/macro/main.inc +++ b/plugins/gofon/macro/main.inc @@ -35,7 +35,7 @@ if ($remove_lock){ /* Page header*/ if (isset($_SESSION['objectinfo'])){ - $display= print_header(get_template_path('images/macros.png'), _("Phone macro management"), "\"\" ".$_SESSION['objectinfo']); + $display= print_header(get_template_path('images/macros.png'), _("Phone macro management"), "\"\" ".@ldap::fix($_SESSION['objectinfo'])); } else { $display= print_header(get_template_path('images/macros.png'), _("Phone macro management")); }