blob: beefac5bb2c8d937dc6977ef130f2ca87d1aad6f [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->getAllFixedBugsBy($_TIMESTAMP) as $bug) {
echo "<li>" . $bug->render() . "</li>";
}
echo "</ul>";
?>