function cc::http_headers_merge in Constant Contact 6.2
* This merges the given array with the http_request_headers array * *
Parameters
array The associative array of headers to merge: * * @access private
1 call to cc::http_headers_merge()
- cc::http_send in ./class.cc.php 
- * This does most the work of creating the HTTP request * *
File
- ./class.cc.php, line 1915 
Class
- cc
- @file
Code
function http_headers_merge($headers) {
  $this->http_request_headers = array_merge($this->http_request_headers, $headers);
}