sniper          Thu Apr  7 16:22:56 2005 EDT

  Modified files:              
    /php-src    run-tests.php 
  Log:
  - Reword the send-report-part a bit. (bug #32624)
  
http://cvs.php.net/diff.php/php-src/run-tests.php?r1=1.211&r2=1.212&ty=u
Index: php-src/run-tests.php
diff -u php-src/run-tests.php:1.211 php-src/run-tests.php:1.212
--- php-src/run-tests.php:1.211 Wed Apr  6 18:14:27 2005
+++ php-src/run-tests.php       Thu Apr  7 16:22:55 2005
@@ -456,12 +456,13 @@
 define('PHP_QA_EMAIL', '[EMAIL PROTECTED]');
 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, unless 
NO_INTERACTION is set */
+/* We got failed Tests, offer the user to send an e-mail to QA team, unless 
NO_INTERACTION is set */
 if (!getenv('NO_INTERACTION')) {
        $fp = fopen("php://stdin", "r+");
-       echo "\nPlease allow this report to be send to the PHP QA\nteam. This 
will give us a better understanding in how\n";
-       echo "PHP's test cases are doing.\n";
-       echo "(choose \"s\" to just save the results to a file)? [Yns]: ";
+       echo "\nYou may have found a problem in PHP.\nWe would like to send 
this report automatically to the\n";
+       echo "PHP QA team, to give us a better understanding of how\nthe test 
cases are doing. If you don't want to send it\n";
+       echo "immediately, you can choose \"s\" to save the report to\na file 
that you can send us later.\n";
+       echo "Do you want to send this report now? [Yns]: ";
        flush();
        $user_input = fgets($fp, 10);
        $just_save_results = (strtolower($user_input[0]) == 's');

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to