svn: SVNROOT/ commit-bugs.php

[email protected] (Gwynne Raskind) Wed, 22 Jul 2009 18:29:28 +0000
Newsgroups php.cvs,svn.migration
Message-ID <[email protected]>
--edf2b537d2395cc75d86aee2b054ae18f2a672a5
Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: 8bit

gwynne                                   Wed, 22 Jul 2009 18:29:28 +0000

Revision: http://svn.php.net/viewvc?view=revision&revision=284620

Log:
whoops. fix the fix.

Changed paths:
    U   SVNROOT/commit-bugs.php

Modified: SVNROOT/commit-bugs.php
===================================================================
--- SVNROOT/commit-bugs.php	2009-07-22 18:22:42 UTC (rev 284619)
+++ SVNROOT/commit-bugs.php	2009-07-22 18:29:28 UTC (rev 284620)
@@ -34,6 +34,7 @@
         break;
     default:
         $bug_project_default = '';
+        break;
 }

 // -----------------------------------------------------------------------------------------------------------------------------
@@ -56,7 +57,7 @@
 include __DIR__ . '/secret.inc';
 foreach ($bug_list as $k => $bug) {
     // Only do this for core PHP bugs
-    if ($bug['project'] !== '') {
+    if ($bug['project'] !== '' && $bug['project'] !== 'php') {
         continue;
     }


--edf2b537d2395cc75d86aee2b054ae18f2a672a5--