blob: 820352a2e05d25b86fb45e6e9e21c4d8015e43c6 [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();
?>
<?php
print "<ul>";
foreach ($bugs as $bug) {
print "<li>" . $bug->asHtml() . "</li>";
}
print "</ul>";