summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 3425d9a)
raw | patch | inline | side by side (parent: 3425d9a)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Thu, 9 Feb 2006 08:28:27 +0000 (08:28 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Thu, 9 Feb 2006 08:28:27 +0000 (08:28 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@2646 594d385d-05f5-0310-b6e9-bd551577e9d8
plugins/admin/systems/class_servDNS.inc | patch | blob | history |
index 086dc952417c7e2199649122130cb4c9dc569f50..13c2956007036ade69e71bf3cef73de14f1d76d7 100644 (file)
}
}
}
-
+
/* Check if there are records removed,
if there are some removed records, the append an array
to ensure that these record types are deleted
*/
if((isset($zone['Records']))&&(is_array($zone['Records']))){
foreach($zone['Records'] as $type){
- if(isset($type['inittype'])){
+ if((isset($type['inittype']))&&($type['inittype']!="")){
if($type['type'] != $type['inittype']){
$tmp[$type['inittype']] = array();
}
}
}
}
+
/* generate forward entry */
$dn = "zoneName=".$zone['zoneName'].",".$this->dn;
$tmp2[$dn] = $tmp;