Files
EasySoft-ZenTaoPMS/module/my/view/blockbugs.html.php
chencongzhi520@gmail.com 7a275dbeae * finish task#1263.
2013-04-10 07:07:58 +00:00

15 lines
574 B
PHP

<div class='block linkbox2'>
<table class='table-1 fixed colored'>
<caption>
<div class='f-left'><span class='icon-bug'>&nbsp;</span> <?php echo $lang->my->bug;?></div>
<div class='f-right'><?php echo html::a($this->createLink('my', 'bug'), $lang->more . "<span class='icon-more'></span>");?></div>
</caption>
<?php
foreach($bugs as $bugID => $bugTitle)
{
echo "<tr><td class='nobr'>" . "#$bugID " . html::a($this->createLink('bug', 'view', "id=$bugID"), $bugTitle, '', "title=$bugTitle") . "</td><td width='5'></td></tr>";
}
?>
</table>
</div>