From 15faeebb5013385fb9a02ddf4ac6b22e18ce8be5 Mon Sep 17 00:00:00 2001 From: Jeremy Kauffman Date: Sat, 13 Aug 2016 13:13:51 -0400 Subject: [PATCH] remove debug line --- lib/tools/Curl.class.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/tools/Curl.class.php b/lib/tools/Curl.class.php index 9fa9b258..11b5f35a 100644 --- a/lib/tools/Curl.class.php +++ b/lib/tools/Curl.class.php @@ -95,7 +95,6 @@ class Curl if (in_array($method, [static::PUT, static::POST])) { - print_r($options['json_data'] ? json_encode($params) : http_build_query($params)); curl_setopt($ch, CURLOPT_POSTFIELDS, $options['json_data'] ? json_encode($params) : http_build_query($params)); } @@ -164,4 +163,4 @@ class CurlException extends Exception parent::__construct($this->error, $this->errno, $previous); } -} \ No newline at end of file +}