A free components from skorp.royy.net

A free components from skorp.royy.net

Download arrow Forum
Joomla
Welcome, Guest
Please Login or Register.    Lost Password?
SOLVED (1 viewing) (1) Guest
Go to bottom Post Reply Favoured: 0
TOPIC: SOLVED
#190
fede67 (User)
Fresh Boarder
Posts: 4
graphgraph
User Offline Click here to see the profile of this user
SOLVED 2 Months, 2 Weeks ago Karma: 0  
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);
 
Report to moderator   Logged Logged  
  The administrator has disabled public write access.
#204
fede67 (User)
Fresh Boarder
Posts: 4
graphgraph
User Offline Click here to see the profile of this user
Re:SOLVED 2 Months ago Karma: 0  
This is my solution for accented letter bad visualization problem
 
Report to moderator   Logged Logged  
  The administrator has disabled public write access.
Go to top Post Reply
Powered by FireBoardget the latest posts directly to your desktop
Joomla Templates by Joomlashack