[TYPO3-project-formidable] Russian locals doesn't work int Formidable 2.0.238, I wrote the solvation some time ago. Please patch it.

Jerome Schneider typo3dev at ameos.com
Tue Sep 9 12:08:42 CEST 2008


Done
Will be available in next SVN revision

Thanks
"Nikitin S.M." <nikitinsm at gmail.com> a écrit dans le message de news: 
mailman.1.1220791708.31460.typo3-project-formidable at lists.netfielders.de...
> remove rawurlencode() from confirm renderer:
>
> PATCH FILE:
> ameos_formidable/api/class.mainrenderer.php
>
> == row num : 171-178 ==
> == replace: ==
> $sConfirm = "false";
> if(array_key_exists("confirm", $aEvent) && trim($aEvent["confirm"] !== 
> "")) {
> $sConfirm = "'" . rawurlencode(
> $this->oForm->_getLLLabel(
> $aEvent["confirm"]
> )
> ) . "'";
> }
>
> == with ===============
> $sConfirm = "false";
> if(array_key_exists("confirm", $aEvent) && trim($aEvent["confirm"] !== 
> "")) {
> $sConfirm = "'" . $this->oForm->_getLLLabel(
> $aEvent["confirm"]
> ) . "'";
> } 




More information about the TYPO3-project-formidable mailing list