Version 0.8.2 ()
------------------------------------------------------------------------
- * when no DB updates and no function calls are needed, do not show
- confusing text to the user telling him an upgrade has
- failed. (garvinhicking)
+ * Fix missing authorname when previewing entry. Thanks to winkiller,
+ aquatic, thomas, wurstprinz and hansi for fixing this!
Version 0.8.1 (May 17th, 2005)
------------------------------------------------------------------------
foreach($dategroup as $properties) {
foreach($properties['entries'] as $x => $_entry) {
$entry = &$properties['entries'][$x]; // PHP4 Compat
+ if ($preview) {
+ $entry['author'] = $entry['realname'];
+ $entry['authorid'] = $serendipity['authorid'];
+ }
+
serendipity_plugin_api::hook_event('frontend_display', $entry);
$entry['link'] = serendipity_archiveURL($entry['id'], $entry['title'], 'serendipityHTTPPath');