summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 681ec51)
raw | patch | inline | side by side (parent: 681ec51)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Thu, 9 Aug 2007 08:32:33 +0000 (08:32 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Thu, 9 Aug 2007 08:32:33 +0000 (08:32 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/branches/2.5@7018 594d385d-05f5-0310-b6e9-bd551577e9d8
plugins/admin/systems/class_dhcpService.inc | patch | blob | history |
diff --git a/plugins/admin/systems/class_dhcpService.inc b/plugins/admin/systems/class_dhcpService.inc
index b2ed5610c04f18d05e0d4e7b5aef9914df5ce79f..3e0954d1b552cef7d79e03aa0f7a210bb2d678b0 100644 (file)
/* Merge arrays for advanced view */
foreach (array("options", "statements") as $type){
- $tmp= array_merge($this->$type, $this->network->$type);
+
+ $tmp = $this->$type;
+ foreach($this->network->$type as $name => $value){
+ $tmp[$name] = $value;
+ }
+
$this->advanced->$type= $tmp;
}
}
}
-
+// vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
?>