修复最近回复链接

用户链接把评论链接覆盖掉了导致并不能点击前往回复的链接地址
This commit is contained in:
Intern 2019-04-12 22:52:17 +08:00 committed by GitHub
parent 32c2f8217d
commit 4df129b01c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -73,7 +73,7 @@ $stat = Typecho_Widget::widget('Widget_Stat');
<?php while($comments->next()): ?>
<li>
<span><?php $comments->date('n.j'); ?></span>
<a href="<?php $comments->permalink(); ?>" class="title"><?php $comments->author(true); ?></a>:
<a href="<?php $comments->permalink(); ?>" class="title"><?php $comments->author(false); ?></a>:
<?php $comments->excerpt(35, '...'); ?>
</li>
<?php endwhile; ?>