blob: 558bf9c3a29d896fb62c05d1edac30237b853e01 [file] [log] [blame]
<?php
/*
* Created on 15/12/2005
* top ten table for the Eclipse Bugs
*/
?>
<h1><b>Top Ten</b> Voted Bugs on <a href="http://bugs.eclipse.org">Eclipse Bugzilla</a></h1>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;votes &nbsp;- bug # &nbsp;&nbsp;- title
<ol class="none">
<?php
for($i = 0; $i < $the_bugs->hasBugs(); $i++)
{
$bug = $the_bugs->getBug($i);
$bg = "class=\"td\"";
if($i % 2 != 0)
$bg = "class=\"td2\"";
?>
<li><?= $bug->getVotes() ?> -
<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=<?= $bug->getBugId() ?>" title="Bug #<?= $bug->getBugId()?>">bug <?= $bug->getBugID() ?></a> -
<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=<?= $bug->getBugId() ?>" title="Bug #<?= $bug->getBugId()?>"><?= $bug->getDescription() ?></a></li>
<?
}
?>
</ol>
<p>
<br/>
<br/>&nbsp;
</p>