From 5dad1d57f51580b320aded2010715ac0e218dccf Mon Sep 17 00:00:00 2001 From: hickert Date: Tue, 27 Mar 2007 09:18:52 +0000 Subject: [PATCH] Fixed w3c warning, caused by missing alt tag in image. Fixed undefined variable, caused by wrong initialization. git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@5901 594d385d-05f5-0310-b6e9-bd551577e9d8 --- plugins/admin/systems/class_divListSystem.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/admin/systems/class_divListSystem.inc b/plugins/admin/systems/class_divListSystem.inc index 7ec5ec944..eca9aa779 100644 --- a/plugins/admin/systems/class_divListSystem.inc +++ b/plugins/admin/systems/class_divListSystem.inc @@ -101,7 +101,7 @@ class divListSystem extends MultiSelectWindow /* Load possible departments */ $ui= get_userinfo(); - $department = array(); + $department = $departments = array(); foreach($this->module as $module){ $d = $ui->get_module_departments($module); foreach($d as $department){ @@ -212,7 +212,7 @@ class divListSystem extends MultiSelectWindow $img9 = "F"; $img10 = "L"; - $empty =""; + $empty =""; /* Dynamic action col, depending on snapshot icons */ $action_col_size = 70; -- 2.30.2