summaryrefslogtreecommitdiff
path: root/run-tests.php
diff options
context:
space:
mode:
authorChristian Stocker <chregu@php.net>2004-07-21 11:19:09 +0000
committerChristian Stocker <chregu@php.net>2004-07-21 11:19:09 +0000
commit7b292e2fba1386a5db7e52f4c1cb88491147f739 (patch)
tree031a0497fb46481fd642d8951e3a84077f7d6263 /run-tests.php
parentdee534efba08ecaf6a73b18d1aa9cbbd49d3e7b7 (diff)
downloadphp-git-7b292e2fba1386a5db7e52f4c1cb88491147f739.tar.gz
Fix for Bug 29010 "make test does not wait to email address" (by Sebastian Nohn)
Diffstat (limited to 'run-tests.php')
-rwxr-xr-xrun-tests.php1
1 files changed, 0 insertions, 1 deletions
diff --git a/run-tests.php b/run-tests.php
index 817113f600..e2073876c3 100755
--- a/run-tests.php
+++ b/run-tests.php
@@ -445,7 +445,6 @@ if (!getenv('NO_INTERACTION')) {
if (!strncasecmp($user_input, 'y', 1) || strlen(trim($user_input)) == 0) {
echo "\nPlease enter your email address.\n(Your address will be mangled so that it will not go out on any\nmailinglist in plain text): ";
flush();
- $fp = fopen("php://stdin", "r+");
$user_email = trim(fgets($fp, 1024));
$user_email = str_replace("@", " at ", str_replace(".", " dot ", $user_email));
}