Commit:    60aa74c6185f2fb59ecc094180743402dc7b28c1
Author:    Derick Rethans <[email protected]>         Fri, 19 Jun 2020 
11:45:16 +0100
Parents:   b1edeff15793069b460287f71da17667535458b2
Branches:  master

Link:       
http://git.php.net/?p=web/bugs.git;a=commitdiff;h=60aa74c6185f2fb59ecc094180743402dc7b28c1

Log:
Restrict search links to PHP bugs only; drop PHP 7.1

Changed paths:
  M  www/index.php


Diff:
diff --git a/www/index.php b/www/index.php
index ce3e68c..7dd619d 100644
--- a/www/index.php
+++ b/www/index.php
@@ -24,12 +24,11 @@ if ('/random' === $_SERVER['REQUEST_URI']) {
 }
 
 $searches = [
-    'Most recent open bugs (all)' => '&bug_type=All',
-    'Most recent open bugs (all) with patch or pull request' => 
'&bug_type=All&patch=Y&pull=Y',
-    'Most recent open bugs (PHP 7.1)' => '&bug_type=All&phpver=7.1',
-    'Most recent open bugs (PHP 7.2)' => '&bug_type=All&phpver=7.2',
-    'Most recent open bugs (PHP 7.3)' => '&bug_type=All&phpver=7.3',
-    'Most recent open bugs (PHP 7.4)' => '&bug_type=All&phpver=7.4',
+    'Most recent open bugs (all)' => '&bug_type=All&project=PHP',
+    'Most recent open bugs (all) with patch or pull request' => 
'&bug_type=All&project=PHP&patch=Y&pull=Y',
+    'Most recent open bugs (PHP 7.2)' => 
'&bug_type=All&phpver=7.2&project=PHP',
+    'Most recent open bugs (PHP 7.3)' => 
'&bug_type=All&phpver=7.3&project=PHP',
+    'Most recent open bugs (PHP 7.4)' => 
'&bug_type=All&phpver=7.4&project=PHP',
     'Open Documentation bugs' => '&bug_type=Documentation+Problem',
     'Open Documentation bugs (with patches)' => 
'&bug_type=Documentation+Problem&patch=Y',
 ];


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

Reply via email to