summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorGravatar maTh <1645099+math-GH@users.noreply.github.com> 2024-05-11 23:41:21 +0200
committerGravatar GitHub <noreply@github.com> 2024-05-11 23:41:21 +0200
commitb4eca4ba03f2455389396dc6d7965055177d9a2c (patch)
tree7997471a76e921bc2fe61bc961a3774a35784864 /app
parentfa731db2861fef5cd0911a1566bed4328a12ab78 (diff)
Fixed: clickable link block (#6444)
* <span><a> => only <a> * update frss.css * update themes
Diffstat (limited to 'app')
-rw-r--r--app/views/helpers/index/normal/entry_header.phtml4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/helpers/index/normal/entry_header.phtml b/app/views/helpers/index/normal/entry_header.phtml
index ebac7f46b..0db375309 100644
--- a/app/views/helpers/index/normal/entry_header.phtml
+++ b/app/views/helpers/index/normal/entry_header.phtml
@@ -52,7 +52,7 @@
?></li><?php
endif; ?>
<li class="item titleAuthorSummaryDate">
- <span class="item-element title<?= (($topline_thumbnail !== 'none') || $topline_summary) ? ' multiline' : '' ?>" dir="auto"><a target="_blank" rel="noreferrer" href="<?= $this->entry->link() ?>"><?= $this->entry->title() ?><?php
+ <a target="_blank" rel="noreferrer" href="<?= $this->entry->link() ?>" class="item-element title<?= (($topline_thumbnail !== 'none') || $topline_summary) ? ' multiline' : '' ?>" dir="auto"><?= $this->entry->title() ?><?php
if ($topline_display_authors):
?><span class="author"><?php
$authors = $this->entry->authors();
@@ -65,7 +65,7 @@
}
?></span><?php
endif;
- ?></a></span>
+ ?></a>
<?php
if ($topline_summary):
?><div class="summary"><?= trim(mb_substr(strip_tags($this->entry->content(false)), 0, 500, 'UTF-8')) ?></div><?php