View Single Post
  #19 (permalink)  
Old 02-26-2007, 08:57 AM
Klug Klug is offline
Moderator
 
Posts: 1,847
Default

IMHO, the fastest way to "patch" this file is to comment out the two lines containing "utf8" 8)

Code:
my $doUTF8 = eval { require utf8 };
and
Code:
utf8::encode($line) if $doUTF8;
Reply With Quote