svn: SVNROOT/ commit-bugs.php

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

gwynne                                   Wed, 22 Jul 2009 18:22:42 +0000

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

Log:
allow for explicit php prefix in bug numbers

Changed paths:
    U   SVNROOT/commit-bugs.php

Modified: SVNROOT/commit-bugs.php
===================================================================
--- SVNROOT/commit-bugs.php	2009-07-22 18:13:38 UTC (rev 284618)
+++ SVNROOT/commit-bugs.php	2009-07-22 18:22:42 UTC (rev 284619)
@@ -6,10 +6,11 @@
 // -----------------------------------------------------------------------------------------------------------------------------
 // Constants
 $version = substr('$Revision$', strlen('$Revision: '), -2);
-$bug_pattern = '/(?:(pecl|pear)\s*)?(?:bug|#)[\s#:]*([0-9]+)/iuX';
+$bug_pattern = '/(?:(pecl|pear|php)\s*)?(?:bug|#)[\s#:]*([0-9]+)/iuX';
 $bug_url_prefixes = array(
     'pear' => 'http://pear.php.net/bugs',
     'pecl' => 'http://pecl.php.net/bugs',
+    'php' => 'http://bugs.php.net',
     '' => 'http://bugs.php.net',
 );
 $bug_rpc_url = 'http://bugs.php.net/rpc.php';

--d4fa2908569945c91cdc41a5c8928e02b1cc988c--