diff --git a/module/pivot/ui/show.html.php b/module/pivot/ui/show.html.php index de8cc3c0ac..a2cc656f64 100644 --- a/module/pivot/ui/show.html.php +++ b/module/pivot/ui/show.html.php @@ -28,10 +28,8 @@ $fnGenerateFilters = function() use($pivot, $showOrigin, $lang) $field = $filter['field']; $value = zget($filter, 'default', ''); $from = zget($filter, 'from'); - $values = is_array($value) ? implode(',', $value) : $value; $items = $this->getFilterOptionUrl($filter, $pivot->sql, (array)$pivot->fieldSettings); - if($from == 'query') { $filters[] = filter(set(array('title' => $name, 'type' => $type, 'name' => $field, 'value' => $value, 'items' => $items, 'multiple' => $type == 'multipleselect' ? true : false)));