Update of /cvsroot/php-blog/serendipity
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19181
Modified Files:
serendipity_functions.inc.php
Log Message:
new extended_entry forma tneeds to be applied to RSS feed as well
Index: serendipity_functions.inc.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/serendipity_functions.inc.php,v
retrieving revision 1.354
retrieving revision 1.355
diff -u -d -r1.354 -r1.355
--- serendipity_functions.inc.php 20 Jul 2004 17:30:38 -0000 1.354
+++ serendipity_functions.inc.php 20 Jul 2004 17:49:20 -0000 1.355
@@ -1913,7 +1913,7 @@
// Embed a link to extended entry, if existing
if ($entry['exflag']) {
- $ext = '<br /><a href="' . $guid . '#extended">' . VIEW_EXTENDED_ENTRY . '</a>';
+ $ext = '<br /><a href="' . $guid . '#extended">' . sprintf(VIEW_EXTENDED_ENTRY, htmlspecialchars($entry['title'])) . '</a>';
} else {
$ext = '';
}
|