评论中的链接
var/Widget/Abstract/Comments.php
echo '<a href="' , $this->url , '"' , ($noFollow ? ' rel="external nofollow"' : NULL) , '>' , $this->author , '</a>';
修改为
echo '<a href="' , $this->url , '"' , ($noFollow ? ' rel="external nofollow"' : NULL) , 'target="_blank">' , $this->author , '</a>';
文章中的链接
var/HyperDown.php
<a href=\"{$url}\">{$link}</a>
修改为
<a href=\"{$url}\" target='_blank'>{$link}</a>
发表回复