diff options
author | Dries Buytaert <dries@buytaert.net> | 2010-07-19 21:54:46 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2010-07-19 21:54:46 +0000 |
commit | 542ceec1deaa6bbff4fdac60e28ca875f562a118 (patch) | |
tree | dd6caab33843c92fa046652b1e18603801cc7d3f /modules/simpletest | |
parent | 83f4ef42f6eacca66708fc24bc63cff11accaaa1 (diff) | |
download | brdo-542ceec1deaa6bbff4fdac60e28ca875f562a118.tar.gz brdo-542ceec1deaa6bbff4fdac60e28ca875f562a118.tar.bz2 |
- Patch #857378 by glipay: remove useless array addition in DrupalWebTestCase::curlInitialize().
Diffstat (limited to 'modules/simpletest')
-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 dfe5d1dc8..b5babec21 100644 --- a/modules/simpletest/drupal_web_test_case.php +++ b/modules/simpletest/drupal_web_test_case.php @@ -1360,7 +1360,7 @@ class DrupalWebTestCase extends DrupalTestCase { if (!isset($this->curlHandle)) { $this->curlHandle = curl_init(); - $curl_options = $this->additionalCurlOptions + array( + $curl_options = array( CURLOPT_COOKIEJAR => $this->cookieFile, CURLOPT_URL => $base_url, CURLOPT_FOLLOWLOCATION => FALSE, |