Ignore:
Timestamp:
2002-07-02T17:15:34+12:00 (22 years ago)
Author:
jrm21
Message:

Oops! Bad things were happening when the headers said utf-8 encoding,
and our convert2unicode functions got confused. We now do nothing if
the message already claims utf-8 encoding.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl/perllib/plugins/EMAILPlug.pm

    r3143 r3206  
    793793  $charset=~s/ks_c_5601_1987/korean/;
    794794
     795  if ($charset eq "utf_8") {
     796      # nothing to do!
     797      return;
     798  }
     799
    795800  # It appears that we can't always trust ascii text so we'll treat it
    796801  # as iso-8859-1 (letting characters above 0x80 through without
Note: See TracChangeset for help on using the changeset viewer.