Update of /cvsroot/php-blog/serendipity/include
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3058/include
Modified Files:
functions_entries.inc.php
Log Message:
use serendipity_utf8encode for RSS feed
Index: functions_entries.inc.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/include/functions_entries.inc.php,v
retrieving revision 1.46
retrieving revision 1.47
diff -u -d -r1.46 -r1.47
--- functions_entries.inc.php 17 Jan 2005 13:55:56 -0000 1.46
+++ functions_entries.inc.php 21 Jan 2005 10:19:06 -0000 1.47
@@ -757,7 +757,7 @@
if ($version == '2.0') {
/*********** RSS 2.0 FEED EXTRAS *************/
foreach ($entry['categories'] AS $idx => $cat) {
- ?><category><?php echo utf8_encode(htmlspecialchars($cat['category_name'])); ?></category><?php
+ ?><category><?php echo serendipity_utf8_encode(htmlspecialchars($cat['category_name'])); ?></category><?php
}
?>
<comments><?php echo $entryLink; ?>#comments</comments>
|