Don't need to convert data to UTF8 anymore, it comes from mysql that way

This commit is contained in:
Graham Knop 2008-03-18 14:48:40 +00:00
parent aa5e25eab6
commit b9134bcadb

View file

@ -15,7 +15,6 @@ package WebGUI::Asset::RSSFromParent;
=cut
use strict;
use Encode;
use HTML::Entities;
use Tie::IxHash;
use base 'WebGUI::Asset';
@ -70,7 +69,6 @@ sub update {
sub _escapeXml {
my $text = shift;
return $text unless (ref $text eq "");
$text = decode('utf8', $text);
return HTML::Entities::encode_numeric($text)
}