#308186 by chx: Fix tons and tons of test failures in certain versions of cURL.

merge-requests/26/head
Angie Byron 2008-09-14 06:46:34 +00:00
parent 13aa3a3299
commit a7c16d158d
1 changed files with 1 additions and 1 deletions

View File

@ -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;