Core: add author to HTML output format

This commit is contained in:
Mitsukarenai 2015-10-13 18:04:45 +02:00
parent 85ebb70b74
commit 372ddf2792
1 changed files with 3 additions and 1 deletions

View File

@ -19,12 +19,14 @@ class HtmlFormat extends FormatAbstract{
$entryUri = is_null($data->uri) ? $uri : $data->uri;
$entryTitle = is_null($data->title) ? '' : $this->sanitizeHtml(strip_tags($data->title));
$entryTimestamp = is_null($data->timestamp) ? '' : '<small><time datetime="' . date(DATE_ATOM, $data->timestamp) . '">' . date(DATE_ATOM, $data->timestamp) . '</time></small>';
$entryAuthor = is_null($data->author) ? '' : '<br><small>by: ' . $data->author . '</small>';
$entryContent = is_null($data->content) ? '' : '<p>' . $this->sanitizeHtml($data->content). '</p>';
$entries .= <<<EOD
<div class="feeditem">
<h2><a href="{$entryUri}">{$entryTitle}</a></h2>
{$entryTimestamp}
{$entryAuthor}
{$entryContent}
</div>