summaryrefslogtreecommitdiff
path: root/run-tests.php
diff options
context:
space:
mode:
authorNuno Lopes <nlopess@php.net>2006-07-17 10:48:11 +0000
committerNuno Lopes <nlopess@php.net>2006-07-17 10:48:11 +0000
commit0433d2902064c02a81a9f7b6e3070a5e53f0f5fa (patch)
tree92d327cbd11e36e079a009e510caf5562a4c14c6 /run-tests.php
parent7c24d8fbeed5e93fd3592a3b55a739e09fb3096a (diff)
downloadphp-git-0433d2902064c02a81a9f7b6e3070a5e53f0f5fa.tar.gz
now they are really equivalent..
Diffstat (limited to 'run-tests.php')
-rwxr-xr-xrun-tests.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/run-tests.php b/run-tests.php
index 4786ae1839..ab3cb7271a 100755
--- a/run-tests.php
+++ b/run-tests.php
@@ -768,7 +768,7 @@ function mail_qa_team($data, $compression, $status = FALSE)
$url_bits = parse_url(QA_SUBMISSION_PAGE);
if (empty($url_bits['port'])) $url_bits['port'] = 80;
- $data = "php_test_data=" . urlencode(base64_encode(str_replace("[\\x00]", "[0x0]", $data)));
+ $data = "php_test_data=" . urlencode(base64_encode(str_replace("\00", '[0x0]', $data)));
$data_length = strlen($data);
$fs = fsockopen($url_bits['host'], $url_bits['port'], $errno, $errstr, 10);