* Converted a large number of ASCII encodings to UTF8.

* We should not be using ASCII anywhere except for legacy compatibility reasons.
* A large number of UTF8 Encoders are being used in places where we should be using Util.StringToField instead. These have been tagged with // ENCODING FAULT
* This should fix Mantis#799 - Japanese Profile Text does not work.
This commit is contained in:
Adam Frisby
2008-03-21 02:26:00 +00:00
parent dc79146d01
commit 7286bd60b0
7 changed files with 20 additions and 13 deletions

View File

@@ -45,7 +45,8 @@ namespace OpenSim.Region.Environment.Scenes
public partial class SceneObjectGroup : EntityBase
{
private Encoding enc = Encoding.ASCII;
// ENCODING FAULT
private Encoding enc = Encoding.UTF8;
protected SceneObjectPart m_rootPart;