blob: 18cd52067010c21b4773e7268555b92602553686 [file] [log] [blame]
<?php
/**
* Copyright (c) 2011, 2015, 2018 Eclipse Foundation and others.
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
*
* Contributors:
* Wayne Beaton (Eclipse Foundation)- initial API and implementation
* Christopher Guindon (Eclipse Foundation)
*
* SPDX-License-Identifier: EPL-2.0
*/
require_once($_SERVER['DOCUMENT_ROOT'] . "/projects/classes/debug.php");
trace_file_info(__FILE__);
require_once($_SERVER['DOCUMENT_ROOT'] . "/projects/classes/Bug.class.php");
$bugs = findResolvedSecurityBugs();
?>
<h1><?php echo $pageTitle; ?></h1>
<?php
print "<ul>";
foreach ($bugs as $bug) {
print "<li>" . $bug->asHtml() . "</li>";
}
print "</ul>";