Sep 27th, 2010, 9:50 PM
First of all, I want to thank Benjamin for this wonderful system.
I have installed the FT on two different servers. On both I use Cyrillic characters in the names of forms:
On one of them when viewing and editing forms, form name is displayed incorrectly:
It is obvious that the observed problem is connected with the function smarty_modifier_upper in /global/smarty/plugins/modifier.upper.php
I don't know what the difference, but on another server, this problem does not appear (or rather, the function does not work, but does not spoil the name):
Solving the problem is quite simple.
Replace:
at:
Is it possible to include this solving in future releases?
I have installed the FT on two different servers. On both I use Cyrillic characters in the names of forms:
On one of them when viewing and editing forms, form name is displayed incorrectly:
It is obvious that the observed problem is connected with the function smarty_modifier_upper in /global/smarty/plugins/modifier.upper.php
I don't know what the difference, but on another server, this problem does not appear (or rather, the function does not work, but does not spoil the name):
Solving the problem is quite simple.
Replace:
PHP Code:
function smarty_modifier_upper($string)
{
return strtoupper($string);
}
PHP Code:
function smarty_modifier_upper($string)
{
return mb_strtoupper($string, 'UTF-8');
}
Is it possible to include this solving in future releases?