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

Nikitin S.M. nikitinsm at gmail.com
Sun Sep 7 14:48:24 CEST 2008


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