parent
1953a7b0f7
commit
4597ce2836
|
@ -0,0 +1,16 @@
|
|||
<?php
|
||||
|
||||
namespace Icinga\Module\Director\Web\Form\Element;
|
||||
|
||||
use Zend_Form_Element_Text as ZfText;
|
||||
|
||||
class Text extends ZfText
|
||||
{
|
||||
public function setValue($value)
|
||||
{
|
||||
if (\is_array($value)) {
|
||||
$value = \json_encode($value);
|
||||
}
|
||||
return parent::setValue((string) $value);
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue