Update to security for quicksilver Change-Id: Icd590fd8c4c8bec9942cc809a57c8a27c51c0a77 Signed-off-by: Christopher Guindon <chris.guindon@eclipse-foundation.org>
diff --git a/content/en_index.php b/content/en_index.php index dca3060..eb39527 100644 --- a/content/en_index.php +++ b/content/en_index.php
@@ -41,8 +41,6 @@ $form = "<form method=\"get\" action=\"$bugzilla\">" . implode('', $inputs) . "</form>"; ?> -<div class="col-md-20"> -<h1><?php print $pageTitle; ?></h1> <p> <i>ISO 27005 defines vulnerability as: "A weakness of an asset or group of assets that can be exploited by one or more @@ -101,5 +99,4 @@ <p> Publicly disclosed issues are listed on the <a href="known.php">Disclosed Vulnerabilities Page</a>. -</p> -</div> \ No newline at end of file +</p> \ No newline at end of file
diff --git a/content/en_known.php b/content/en_known.php index df25d62..820352a 100644 --- a/content/en_known.php +++ b/content/en_known.php
@@ -19,13 +19,9 @@ require_once($_SERVER['DOCUMENT_ROOT'] . "/projects/classes/Bug.class.php"); $bugs = findResolvedSecurityBugs(); ?> -<div class="col-md-20"> -<h1><?php echo $pageTitle; ?></h1> <?php print "<ul>"; foreach ($bugs as $bug) { print "<li>" . $bug->asHtml() . "</li>"; } - print "</ul>"; -?> -</div> \ No newline at end of file + print "</ul>"; \ No newline at end of file
diff --git a/content/en_policy.php b/content/en_policy.php index d266524..ebe729d 100644 --- a/content/en_policy.php +++ b/content/en_policy.php
@@ -13,8 +13,6 @@ * SPDX-License-Identifier: EPL-2.0 */ ?> -<div class="col-md-20"> -<h1><?php print $pageTitle; ?></h1> <a name="Overview"></a> <h2>Overview</h2> <p>The purpose of the Eclipse Security Policy is to set forth the @@ -202,5 +200,4 @@ href="http://www.cert.org" class="external text" title="http://www.cert.org" rel="nofollow">CERT</a>. The EMO can provide assistance. -</p> -</div> \ No newline at end of file +</p> \ No newline at end of file
diff --git a/index.php b/index.php index 7827d8d..70a02d9 100755 --- a/index.php +++ b/index.php
@@ -29,4 +29,5 @@ $html = ob_get_clean(); $Theme->setHtml($html); +$Theme->setDisplayHeaderTitle(TRUE); $Theme->generatePage(); \ No newline at end of file
diff --git a/known.php b/known.php index cd57b57..5a85f59 100755 --- a/known.php +++ b/known.php
@@ -29,4 +29,5 @@ $html = ob_get_clean(); $Theme->setHtml($html); +$Theme->setDisplayHeaderTitle(TRUE); $Theme->generatePage(); \ No newline at end of file
diff --git a/policy.php b/policy.php index 3010f1a..40000e9 100755 --- a/policy.php +++ b/policy.php
@@ -29,4 +29,5 @@ $html = ob_get_clean(); $Theme->setHtml($html); +$Theme->setDisplayHeaderTitle(TRUE); $Theme->generatePage(); \ No newline at end of file