How can I get the comments-plugin to also show the title of the trackbacks in the list of recent comments (here called "latest submissions") on my front page?
I guess, I have to change this code in serendipity_plugin_comments.php, but I don't know how.
Code: Select all
printf(
PLUGIN_COMMENTS_ABOUT,
$user,
' <a class="highlight" href="' . serendipity_archiveURL($row['entry_id'], $row['subject'], 'baseURL', true, array('timestamp' => $row['entrystamp'])) .'#c' . $row['comment_id'] . '" title="' . htmlspecialchars($row['subject']) . '">'
. htmlspecialchars($row['subject'])
. '</a><br />' . "\n"
. htmlspecialchars(serendipity_strftime($dateformat, $row['stamp'])) . '<br />' . "\n"
. strip_tags($entry['comment'], '<br><img>')
. '<br /><br /><br />' . "\n\n"
);