Update of /cvsroot/php-blog/serendipity
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5102
Modified Files:
NEWS serendipity_functions.inc.php
Log Message:
fixed bad xml formatting for embedded RDF. Thanks to Henryk Plötz for
discovering...
Index: serendipity_functions.inc.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/serendipity_functions.inc.php,v
retrieving revision 1.243
retrieving revision 1.244
diff -u -d -r1.243 -r1.244
--- serendipity_functions.inc.php 29 Mar 2004 07:52:04 -0000 1.243
+++ serendipity_functions.inc.php 1 Apr 2004 10:05:59 -0000 1.244
@@ -882,8 +882,8 @@
xmlns:dc="http://purl.org/dc/elements/1.1/">
<rdf:Description
rdf:about="<?php echo $serendipity['baseURL'] . ($serendipity['rewrite'] == 'none' ? $serendipity['indexFile'] . '?/' : ''); ?>feeds/ei_<?php echo $entry['id']; ?>.rdf"
- trackback:ping="<?php echo $serendipity['baseURL']; ?>comment.php?type=trackback&entry_id=<?php echo $entry['id']; ?>"
- dc:title="<?php echo $entry['title']; ?>"
+ trackback:ping="<?php echo $serendipity['baseURL']; ?>comment.php?type=trackback&entry_id=<?php echo $entry['id']; ?>"
+ dc:title="<?php echo htmlspecialchars($entry['title']); ?>"
dc:identifier="<?php echo serendipity_archiveURL($entry['id'], $entry['title']); ?>" />
</rdf:RDF>
-->
Index: NEWS
===================================================================
RCS file: /cvsroot/php-blog/serendipity/NEWS,v
retrieving revision 1.99
retrieving revision 1.100
diff -u -d -r1.99 -r1.100
--- NEWS 26 Mar 2004 16:47:22 -0000 1.99
+++ NEWS 1 Apr 2004 10:05:58 -0000 1.100
@@ -3,6 +3,8 @@
Version 0.6 ()
------------------------------------------------------------------------
+ * Fixed invalid XML for RDF trackback:ping (garvinhicking)
+
* Added plugin 'serendipity_event_statistics'. Hooks into the
admin entry-panel. (garvinhicking)
|