Just opened http://zendframework.com/issues/browse/ZF-8707
Regards
--
Guillaume ORIOL
When I use a Zend_Dojo_Form_Element_Editor in a form, the returned
> value is an array with some browsers.
>
> For instance, $form->getValues() will return the following when I
> use Safari (4.0.4 Mac):
> array (
> 'last_name' => 'Doe',
> 'content' =>
> array (
> 'Editor' => 'some text',
> ),
> ...
> )
>
> But with Firefox 3.5.6, the following is returned:
> array (
> 'last_name' => 'Doe,
> 'content' => 'some text<br _moz_editor_bogus_node="TRUE" />',
> ...
> ),
>
> Searching on Nabble, I've found a few posts related to this question
> - but none of them were answered.