fix single author problem
This commit is contained in:
parent
7a36469b62
commit
24f253c027
|
@ -20,7 +20,7 @@ $this->headLink()->appendStylesheet('/css/colorbox.css');
|
|||
<h3><?php echo $this->paper['title']; ?></h3>
|
||||
<hr />
|
||||
<?php } ?>
|
||||
<?php if(count($this->author) > 0) {?>
|
||||
<?php if($this->author) : ?>
|
||||
<h4>作者</h4>
|
||||
<ul>
|
||||
<?php foreach($this->author as $a) : ?>
|
||||
|
@ -28,7 +28,7 @@ $this->headLink()->appendStylesheet('/css/colorbox.css');
|
|||
<?php endforeach; ?>
|
||||
</ul>
|
||||
<hr />
|
||||
<?php } ?>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if ($this->paper['abstract']){ ?>
|
||||
<h4>摘要</h4>
|
||||
|
|
Loading…
Reference in New Issue