Update of /cvsroot/php-blog/serendipity/plugins/serendipity_event_blogpdf
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26354/plugins/serendipity_event_blogpdf
Modified Files:
serendipity_event_blogpdf.php
Log Message:
Fix a bit more username stuff. I am seriously afraid there's more borkage left. Please check it out thoroughly, whoever is reading this ;)
Index: serendipity_event_blogpdf.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/plugins/serendipity_event_blogpdf/serendipity_event_blogpdf.php,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -d -r1.18 -r1.19
--- serendipity_event_blogpdf.php 13 Feb 2005 12:49:56 -0000 1.18
+++ serendipity_event_blogpdf.php 25 Feb 2005 14:36:30 -0000 1.19
@@ -350,7 +350,7 @@
$entryLink = serendipity_archiveURL($entry['id'], $entry['title'], 'serendipityHTTPPath');
serendipity_plugin_api::hook_event('frontend_display', $entry, array('no_scramble' => true));
- $posted_by = ' ' . POSTED_BY . ' ' . htmlspecialchars($entry['username']);
+ $posted_by = ' ' . POSTED_BY . ' ' . htmlspecialchars($entry['realname']);
if (is_array($entry['categories']) && sizeof($entry['categories']) > 0) {
$posted_by .= ' ' . IN . ' ';
$cats = array();
|