From 3c72cb9062dfd714b35b1f83aa672fa0f48bc7b5 Mon Sep 17 00:00:00 2001 From: Thomas Gelf Date: Mon, 21 Aug 2017 12:23:02 +0200 Subject: [PATCH] FormDataFilter: use correct view helper for... ...ExtensibleSet - this affects assign filters involving arrays fixes #1068 --- application/views/helpers/FormDataFilter.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/views/helpers/FormDataFilter.php b/application/views/helpers/FormDataFilter.php index 1679635b..f3b49916 100644 --- a/application/views/helpers/FormDataFilter.php +++ b/application/views/helpers/FormDataFilter.php @@ -220,7 +220,7 @@ class Zend_View_Helper_FormDataFilter extends Zend_View_Helper_FormElement { $value = $filter === null ? '' : $filter->getExpression(); if (is_array($value)) { - return $this->view->formExtensibleSet( + return $this->view->formIplExtensibleSet( $this->elementId('value', $filter), $value );