From f9f33de9750ef49e50ff724d747f7df45e69edca Mon Sep 17 00:00:00 2001 From: adamholte Date: Fri, 30 May 2014 11:17:27 -0500 Subject: [PATCH] pass timeout to makeRequest --- src/Drewm/MailChimp.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Drewm/MailChimp.php b/src/Drewm/MailChimp.php index 1afb1fd..bde2951 100644 --- a/src/Drewm/MailChimp.php +++ b/src/Drewm/MailChimp.php @@ -40,7 +40,7 @@ function __construct($api_key) */ public function call($method, $args=array(), $timeout = 10) { - return $this->makeRequest($method, $args); + return $this->makeRequest($method, $args, $timeout); } /**