From: hickert Date: Wed, 18 Jul 2007 09:36:46 +0000 (+0000) Subject: The attribute mouse port wasn't included by the inherit all button X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=d59a8125dde8fd902c0444815ef00afa70430272;p=gosa.git The attribute mouse port wasn't included by the inherit all button git-svn-id: https://oss.gonicus.de/repositories/gosa/branches/2.5@6905 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/plugins/admin/systems/class_terminalGeneric.inc b/plugins/admin/systems/class_terminalGeneric.inc index 8f5b2fde3..66500df34 100644 --- a/plugins/admin/systems/class_terminalGeneric.inc +++ b/plugins/admin/systems/class_terminalGeneric.inc @@ -540,7 +540,7 @@ class termgeneric extends plugin /* Set workstation service attributes to inherited */ if($this->member_of_ogroup && isset($this->parent->by_object['termservice'])){ foreach(array("gotoXKbLayout","gotoXKbModel","gotoXKbVariant", - "gotoXResolution","gotoXColordepth","gotoXMouseType","gotoXMouseType") as $name){ + "gotoXResolution","gotoXColordepth","gotoXMouseType","gotoXMouseport") as $name){ $this->parent->by_object['termservice']->$name = "default"; } } diff --git a/plugins/admin/systems/class_workstationGeneric.inc b/plugins/admin/systems/class_workstationGeneric.inc index 78f22f969..e4c26a180 100644 --- a/plugins/admin/systems/class_workstationGeneric.inc +++ b/plugins/admin/systems/class_workstationGeneric.inc @@ -509,7 +509,7 @@ class workgeneric extends plugin /* Set workstation service attributes to inherited */ if($this->member_of_ogroup && isset($this->parent->by_object['workservice'])){ foreach(array("gotoXKbLayout","gotoXKbModel","gotoXKbVariant", - "gotoXResolution","gotoXColordepth","gotoXMouseType","gotoXMouseType") as $name){ + "gotoXResolution","gotoXColordepth","gotoXMouseType","gotoXMouseport") as $name){ $this->parent->by_object['workservice']->$name = "default"; } }