I've found this solution.
in module/mod_raf_cloud open file mod_raf_cloud.
Add these functions to code:
| Code: |
function strtolower_utf8($inputString) {
$outputString = utf8_decode($inputString);
$outputString = strtolower($outputString);
$outputString = utf8_encode($outputString);
return $outputString;
}
|
and
| Code: |
function strtoupper_utf8($inputString) {
$outputString = utf8_decode($inputString);
$outputString = strtoupper($outputString);
$outputString = utf8_encode($outputString);
return $outputString;
}
|
Search :
| Code: |
if ($uplow=="lowercase") $word=strtolower($word);
|
Substitute with:
| Code: |
if ($uplow=="lowercase") $word=strtolower_utf8($word);
|
Search:
| Code: |
if ($uplow=="uppercase") $word=strtoupper($word);
|
Substitute with:
| Code: |
if ($uplow=="uppercase") $word=strtoupper_utf8($word);
|