diff options
author | Derick Rethans <derick@php.net> | 2002-12-11 20:13:43 +0000 |
---|---|---|
committer | Derick Rethans <derick@php.net> | 2002-12-11 20:13:43 +0000 |
commit | c4342de561ed00b89af6a6f21deb41a00e66e8bf (patch) | |
tree | 967746309edef2adaf60cf6929bdc788de12b869 /run-tests.php | |
parent | 2ab549c5f2489135ec9228c84c8166c827203378 (diff) | |
download | php-git-c4342de561ed00b89af6a6f21deb41a00e66e8bf.tar.gz |
- MFB
Diffstat (limited to 'run-tests.php')
-rwxr-xr-x | run-tests.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/run-tests.php b/run-tests.php index f59e62c1c3..e8caf90e03 100755 --- a/run-tests.php +++ b/run-tests.php @@ -336,7 +336,7 @@ if ($sum_results['FAILED'] && !getenv('NO_INTERACTION')) { */ /* Ask the user to provide an email address, so that QA team can contact the user */ - if (!strncasecmp($user_input, 'y', 1)) { + if (!strncasecmp($user_input, 'y', 1) || strlen(trim($user_input)) == 0) { echo "Please enter your email address: "; flush(); $fp = fopen("php://stdin", "r+"); |