diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2008-09-14 06:46:34 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2008-09-14 06:46:34 +0000 |
commit | a7c16d158d9d2e55b50182c5785ebd210b3db9ec (patch) | |
tree | ee62f399bdc17120eef55af3b55da04f9770adc5 | |
parent | 13aa3a329989e186c2ecbbf3799c8a40b6f88f87 (diff) | |
download | brdo-a7c16d158d9d2e55b50182c5785ebd210b3db9ec.tar.gz brdo-a7c16d158d9d2e55b50182c5785ebd210b3db9ec.tar.bz2 |
#308186 by chx: Fix tons and tons of test failures in certain versions of cURL.
-rw-r--r-- | modules/simpletest/drupal_web_test_case.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/simpletest/drupal_web_test_case.php b/modules/simpletest/drupal_web_test_case.php index f27cee60a..20d708174 100644 --- a/modules/simpletest/drupal_web_test_case.php +++ b/modules/simpletest/drupal_web_test_case.php @@ -947,7 +947,7 @@ class DrupalWebTestCase { } $post = implode('&', $post); } - $out = $this->curlExec(array(CURLOPT_URL => $action, CURLOPT_POST => TRUE, CURLOPT_POSTFIELDS => $post, CURLOPT_HEADER => FALSE, CURLOPT_NOBODY => FALSE)); + $out = $this->curlExec(array(CURLOPT_URL => $action, CURLOPT_POST => TRUE, CURLOPT_POSTFIELDS => $post, CURLOPT_HEADER => FALSE)); // Ensure that any changes to variables in the other thread are picked up. $this->refreshVariables(); return $out; |