gwynne Mon, 13 Jul 2009 08:57:18 +0000
ViewVC URL: http://svn.php.net/viewvc?view=revision&revision=284001
Changed paths:
U SVNROOT/commit-email.php
Log:
fix commit emails handling
Modified: SVNROOT/commit-email.php
===================================================================
--- SVNROOT/commit-email.php 2009-07-13 08:39:13 UTC (rev 284000)
+++ SVNROOT/commit-email.php 2009-07-13 08:57:18 UTC (rev 284001)
@@ -55,7 +55,7 @@
'|^phpdoc/no|' => array('[email protected]'),
'|^phpdoc/pl|' => array('[email protected]'),
'|^phpdoc/pt_BR|' => array('[email protected]'),
- '|^phpdoc/pt(?!_BR)|' => array('[email protected]'),
+ '|^phpdoc/pt|' => array('[email protected]'),
'|^phpdoc/ro|' => array('[email protected]'),
'|^phpdoc/ru|' => array('[email protected]'),
'|^phpdoc/sk|' => array('[email protected]'),
@@ -71,10 +71,12 @@
// PEAR
'|^pear/pearbot|' => array('[email protected]'),
'|^pear/peardoc/en/pecl|' => array('[email protected]',
'[email protected]'),
+ '|^pear/pearweb|' => array('[email protected]',
'[email protected]'),
'|^pear/peardoc|' => array('[email protected]'),
'|^pear/pear-core|' => array('[email protected]',
'[email protected]'),
'|^pear/packages/installphars|' => array('[email protected]'),
'|^pear/packages|' => array('[email protected]'),
+ '|^pear|' => array('[email protected]', '[email protected]'),
// PECL
'|^pecl|' => array('[email protected]'),
@@ -126,6 +128,7 @@
foreach ($commit_email_list as $regex => $email_list) {
if (preg_match($regex, $changed_path, $matches) === 1) {
$emails_to = array_merge($emails_to, $email_list);
+ break;
}
}
if (substr_count($changed_path, '/') < substr_count($parent_path, '/')) {
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php