From: cajus Date: Wed, 23 Apr 2008 07:22:37 +0000 (+0000) Subject: Added possibililty to hide the | character X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=abd536fdaf258d69e8350e1aa1ce4290148aea1c;p=gosa.git Added possibililty to hide the | character git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@10626 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/gosa-core/include/class_MultiSelectWindow.inc b/gosa-core/include/class_MultiSelectWindow.inc index c5479c11f..e76ee82ff 100644 --- a/gosa-core/include/class_MultiSelectWindow.inc +++ b/gosa-core/include/class_MultiSelectWindow.inc @@ -211,7 +211,7 @@ class MultiSelectWindow{ /* Return default header part. With back, home and root icons and department selection */ - function get_default_header() + function get_default_header($seperator= TRUE) { $enable_back = TRUE; $enable_root = TRUE; @@ -260,9 +260,10 @@ class MultiSelectWindow{ /* And at least draw reload button, this button is enabled everytime */ $listhead .= "  ". - " - "; - + title='"._("Reload list")."' name='submit_department' alt='"._("Submit")."'> "; + if ($seperator){ + $listhead.= " - "; + } return ($listhead); }