* Fix bug#26878.
This commit is contained in:
@@ -326,7 +326,17 @@
|
||||
</tr>
|
||||
<tr>
|
||||
<th><?php echo $lang->story->legendMailto;?></th>
|
||||
<td><?php $mailto = explode(',', $story->mailto); foreach($mailto as $account) {if(empty($account)) continue; echo "<span>" . zget($users, trim($account)) . '</span> '; }?></td>
|
||||
<td>
|
||||
<?php
|
||||
if(!empty($story->mailto))
|
||||
{
|
||||
foreach(explode(',', $story->mailto) as $account)
|
||||
{
|
||||
if(empty($account)) continue; echo "<span>" . zget($users, trim($account)) . '</span> ';
|
||||
}
|
||||
}
|
||||
?>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
Reference in New Issue
Block a user