v2.3a Official Release
* Small fix to avoid translation of non braking spaces to normal spaces
To upgrade;
find in Global Translator Plugin:
Code:
require_once("translate.php");
$output=callback($output);
replace:
Code:
$output = str_replace(" ", "< >", $output);
require_once("translate.php");
$output=callback($output);
$output = str_replace("< >", " ", $output);
Run this DB query:
Code:
delete from wt_cache_short where originaltext like '% %';
delete from wt_cache_medium where originaltext like '% %';
delete from wt_cache where originaltext like '% %';
Then optimize all 3 tables to remove overhead.