From: hickert Date: Fri, 26 Feb 2010 13:05:30 +0000 (+0000) Subject: Removed header from management plugin X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=c949624ae7233c3d1f39f0d4b8d1fc85105e7c86;p=gosa.git Removed header from management plugin git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@15751 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/gosa-core/include/class_management.inc b/gosa-core/include/class_management.inc index d418c31f1..2769a5745 100644 --- a/gosa-core/include/class_management.inc +++ b/gosa-core/include/class_management.inc @@ -207,16 +207,8 @@ class management */ protected function getHeader() { - if($this->skipHeader) return(""); - - if (get_object_info() != ""){ - $display= print_header(get_template_path($this->plIcon),_($this->plDescription), - "\"\"". - LDAP::fix(get_object_info())); - } else { - $display= print_header(get_template_path($this->plIcon),_($this->plDescription)); - } - return($display); + // We do not display any headers right now. + if(1 || $this->skipHeader) return(""); }