I probably missed that when I was rewriting the script.
I will update it to use the proper html codes.
It will be available in the next release. Until that time, anyone who wants to fix the problem can:
Open global.php:
Find
Code:
case "uk": $converted_string = "£".number_format($number, 2);
break;
case "eu": $converted_string = "".number_format($number, 2, ",",".");
break;
And replace with:
Code:
case "uk": $converted_string = "£".number_format($number, 2);
break;
case "eu": $converted_string = "€".number_format($number, 2, ",",".");
break;