Merged revisions 5062 via svnmerge from

https://svn.webgui.org/plainblack/branch/WebGUI_7.4

........
  r5062 | graham | 2007-11-29 09:45:32 -0600 (Thu, 29 Nov 2007) | 1 line
  
  fix: double width characters encoded incorrectly in Collaboration RSS feed
........
This commit is contained in:
Graham Knop 2007-11-29 15:50:56 +00:00
parent c091192f47
commit 377386f239
2 changed files with 5 additions and 0 deletions

View file

@ -9,6 +9,9 @@
(Diona Kidd, Knowmad Technologies)
- rfe: Add menuTitle to folder template (perlDreamer Consulting, LLC)
7.4.17
- fix: double width characters encoded incorrectly in Collaboration RSS feed
7.4.16
- fix: Event End Time Missing (perlDreamer Consulting, LLC.)
http://www.plainblack.com/bugs/tracker/event-end-time-missing

View file

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