derick Wed Oct 23 16:13:42 2002 EDT
Modified files:
/php4 run-tests.php
Log:
[0.05]
- Disable html_errors in info sent
Index: php4/run-tests.php
diff -u php4/run-tests.php:1.84 php4/run-tests.php:1.85
--- php4/run-tests.php:1.84 Wed Oct 23 13:56:42 2002
+++ php4/run-tests.php Wed Oct 23 16:13:42 2002
@@ -249,7 +249,7 @@
define('QA_SUBMISSION_PAGE', 'http://qa.php.net/buildtest-process.php');
/* We got failed Tests, offer the user to send and e-mail to QA team */
-if ($sum_results['FAILED']) {
+if ($sum_results['FAILED'] && !getenv("DONT_ASK_QA")) {
$fp = fopen("php://stdin", "r+");
fwrite($fp, "Some tests have failed, would you like to send the\nreport to
PHP's QA team? [Yn]: ");
fflush($fp);
@@ -281,7 +281,7 @@
}
$failed_tests_data .= $sep . "PHPINFO" . $sep;
- $failed_tests_data .= shell_exec($php.' -i');
+ $failed_tests_data .= shell_exec($php.' -dhtml_errors=0 -i');
$compression = 0;
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php