Authored by whb

修改bug

... ... @@ -573,7 +573,7 @@ define('yohood', function(require, exports) {
'</div>' +
'<div class="content">' +
'<h2 {titleStyle}>' +
'<a href="' + url + '" title="' + title + '">' + topic + '</a>' +
'<a href="' + url + '" title="' + title + '" target="_blank">' + topic + '</a>' +
'</h2>' +
'</div>' +
'</div>';
... ...
... ... @@ -34,9 +34,9 @@ else
</div>
<div class="content">
<h2 <?php echo $news['main_title_type'] == 1 ? 'class="volupia"':'';?>>
<a href="<?php echo url('news/detail' ,array('id' => $news['id']))?>"><?php echo $news['title'];?></a>
<a href="<?php echo url('news/detail' ,array('id' => $news['id']))?>" target="_blank"><?php echo $news['title'];?></a>
</h2>
<p class="text-content"><?php echo $description;?></p>
<p class="text-content"><a href="<?php echo url('news/detail' ,array('id' => $news['id']))?>" target="_blank"><?php echo $description;?></a></p>
<p class="time"><?php echo date('Y.m.d', $news['create_time']);?></p>
</div>
</div>
... ...