| Zoe Slattery 2008-02-13, 7:01 pm |
| zoe Wed Feb 13 20:15:05 2008 UTC
Modified files:
/qaweb buildtest-process.php
Log:
Fix to qa-web to send the test reports to the reports addr not to the php-qa addr
http://cvs.php.net/viewvc.cgi/qaweb...5&diff_format=u
Index: qaweb/buildtest-process.php
diff -u qaweb/buildtest-process.php:1.14 qaweb/buildtest-process.php:1.15
--- qaweb/buildtest-process.php:1.14 Tue May 8 21:25:55 2007
+++ qaweb/buildtest-process.php Wed Feb 13 20:15:05 2008
@@ -25,8 +25,8 @@
$version = "unknown";
}
if (in_array($version, $BUILD_TEST_RELEASES) || in_array($version, $DEV_RELEASES)) {
- mail ("php-qa@lists.php.net", "Test results for $version [$status]", base64_decode($_POST['php_test_data']), "From: noreply@php.net");
+ mail ("php-qa-reports@lists.php.net", "Test results for $version [$status]", base64_decode($_POST['php_test_data']), "From: noreply@php.net");
}
}
?>
-$Revision: 1.14 $
+$Revision: 1.15 $
|