Commit b90765c7 authored by Côme Chilliet's avatar Côme Chilliet
Browse files

Merge branch '5709-system-dns-tab-dns-record-filtering' into '1.3-dev'

Resolve "System - DNS Tab - DNS record filtering"

Closes #5709

See merge request !44
Showing with 1 addition and 1 deletion
+1 -1
...@@ -83,7 +83,7 @@ class DnsRecordsFilteredAttribute extends DnsRecordsAttribute ...@@ -83,7 +83,7 @@ class DnsRecordsFilteredAttribute extends DnsRecordsAttribute
} }
$ips = $this->plugin->parent->getBaseObject()->ipHostNumber; $ips = $this->plugin->parent->getBaseObject()->ipHostNumber;
$cn = preg_replace('/\$$/', '', $this->plugin->parent->getBaseObject()->cn); $cn = preg_replace('/\$$/', '', $this->plugin->parent->getBaseObject()->cn);
if (in_array($values[2], $ips) || ($values[0] == $cn) || preg_match('/'.preg_quote($cn.'.'.$this->getZoneName(), '/i').'/', $value[2])) { if (in_array($values[2], $ips) || (!empty($cn) && (($values[0] == $cn) || preg_match('/'.preg_quote($cn.'.'.$this->getZoneName(), '/i').'/', $value[2])))) {
return $values; return $values;
} else { } else {
return array(); return array();
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment