From d88753c6ee7ba534ab04e46e81f75934b7f61794 Mon Sep 17 00:00:00 2001 From: hickert Date: Tue, 14 Feb 2006 07:52:26 +0000 Subject: [PATCH] Fixed picture management git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@2689 594d385d-05f5-0310-b6e9-bd551577e9d8 --- plugins/admin/systems/class_systemManagement.inc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/plugins/admin/systems/class_systemManagement.inc b/plugins/admin/systems/class_systemManagement.inc index 59b8ffdc2..7bcd17225 100644 --- a/plugins/admin/systems/class_systemManagement.inc +++ b/plugins/admin/systems/class_systemManagement.inc @@ -1173,10 +1173,6 @@ class systems extends plugin $terminal['location'] = array_search($tmp, $this->config->departments); $terminal['message'] = _("Workstation template for"); } - }elseif (in_array("GOhard",$value['objectClass'])){ - $terminal = $value; - $terminal['type'] = "Q"; - $terminal['is_new'] = $add; } elseif (in_array('gotoPrinter', $value["objectClass"])){ $terminal = $value; $terminal['type'] = "P"; @@ -1186,6 +1182,10 @@ class systems extends plugin } elseif (in_array('goFonHardware', $value["objectClass"])){ $terminal = $value; $terminal['type'] = "F"; + }elseif (in_array("GOhard",$value['objectClass'])){ + $terminal = $value; + $terminal['type'] = "Q"; + $terminal['is_new'] = $add; } elseif (in_array('ieee802Device', $value["objectClass"])){ $terminal = $value; $terminal['type'] = "C"; -- 2.30.2