Author: Nikita Popov (nikic)
Date: 2021-12-04T17:05:05+01:00

Commit: 
https://github.com/php/web-bugs/commit/d0b0481c1c0465be0db6b2622b98434f98131596
Raw diff: 
https://github.com/php/web-bugs/commit/d0b0481c1c0465be0db6b2622b98434f98131596.diff

Point people to the new issue tracker

Changed paths:
  M  include/functions.php
  M  www/report.php


Diff:

diff --git a/include/functions.php b/include/functions.php
index ac52b81c..d7d6d3b1 100644
--- a/include/functions.php
+++ b/include/functions.php
@@ -480,7 +480,7 @@ function show_type_options($current, $deprecated, $all = 
false)
     }
 
     foreach ($bug_types as $k => $v) {
-        if ($k === 'Documentation Problem' && !$deprecated) {
+        if ($k !== 'Security' && !$deprecated) {
             continue;
         }
         $selected = strcasecmp($current, $k) ? '' : ' selected="selected"';
diff --git a/www/report.php b/www/report.php
index 8b7e19b3..9e0c389c 100644
--- a/www/report.php
+++ b/www/report.php
@@ -362,31 +362,15 @@
     response_header('Report - New', $packageAffectedScript);
 ?>
 
-    <p>
-        Before you report a bug, make sure to search for similar bugs using 
the &quot;Bug List&quot; link.
-        Also, read the instructions for <a target="top" 
href="how-to-report.php">how to report a bug that someone will want to help 
fix</a>.
-    </p>
-
-    <p>
-        If you aren't sure that what you're about to report is a bug, you 
should ask for help using one of the means for support
-        <a href="https://php.net/support.php";>listed here</a>.
-    </p>
-
-    <p>
-        <strong>Failure to follow these instructions may result in your bug 
simply being marked as &quot;not a bug.&quot;</strong>
-    </p>
-
-    <p style="background-color: #ffa;">
-        <strong>Documentation issues should now be reported on the <a 
href="https://github.com/php/doc-en/issues";>php/doc-en</a> repository.</strong>
-    </p>
-
-    <p>Report <img src="images/pear_item.gif"><b>PEAR</b> related bugs <a 
href="https://pear.php.net/bugs/";>here</a>.</p>
-
-    <p>
-        <strong>If you feel this bug concerns a security issue, e.g. a buffer 
overflow, weak encryption, etc, then email
-
-        <?php echo 
make_mailto_link("{$site_data['security_email']}?subject=%5BSECURITY%5D+possible+new+bug%21",
 $site_data['security_email']); ?>
-        who will assess the situation or use <strong>Security</strong> as bug 
type in the form below.</strong>
+    <p style="background-color: #faa;">
+        <strong>This bug tracker no longer accepts new non-security issues. 
Instead use one of the following.</strong>
+        <ul style="background-color: #faa">
+            <li>Implementation issues: <a 
href="https://github.com/php/php-src/issues";>php/php-src repository</a></li>
+            <li>Documentation issues: <a 
href="https://github.com/php/doc-en/issues";>php/doc-en repository</a></li>
+            <li>PECL extension issues: Find the correct extension-specific bug 
tracker at <a href="https://pecl.php.net/";>pecl.php.net</a></li>
+            <li>PEAR issues: <a 
href="https://pear.php.net/bugs/";>pear.php.net/bugs</a></li>
+            <li>Security issues: Use the form below, or email <?php echo 
make_mailto_link("{$site_data['security_email']}?subject=%5BSECURITY%5D+possible+new+bug%21",
 $site_data['security_email']); ?></li>
+        </ul>
     </p>
 
 <?php

-- 
PHP Webmaster List Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to