blob: 891dd775a316adbccd42eb5d9fb6e3305d1af80a [file] [log] [blame]
<?php
require_once 'BugzillaConnection.class.php';
$_TIMESTAMP = $_GET['timestamp'];
$conn = new BugzillaConnection();
$productId = $conn->getTigerstripeProductID();
print $productId . "</br>";
echo "<ul>";
foreach( $conn->getAllFixedBugsUntil($_TIMESTAMP) as $bug) {
echo "<li>" . $bug->render() . "</li>";
}
echo "</ul>";
?>