Till Brehm
2014-08-25 614b23b18053c58c3f85db5ceaa982484175d276
interface/lib/classes/IDS/Monitor.php
@@ -250,7 +250,7 @@
        $filterSet = $this->storage->getFilterSet();
        if ($tags = $this->tags) {
            $filterSet = array_filter(
            $filterSet = @array_filter(
                $filterSet,
                function (Filter $filter) use ($tags) {
                    return (bool) array_intersect($tags, $filter->getTags());
@@ -259,7 +259,7 @@
        }
        $scanKeys = $this->scanKeys;
        $filterSet = array_filter(
        $filterSet = @array_filter(
            $filterSet,
            function (Filter $filter) use ($key, $value, $scanKeys) {
                return $filter->match($value) || $scanKeys && $filter->match($key);