From 99b4d1900881959dde49eafafce2d71d9badb094 Mon Sep 17 00:00:00 2001 From: Chris Date: Wed, 2 Apr 2014 18:30:19 +0800 Subject: [PATCH] GoogleTranslate.php --- GoogleTranslate.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/GoogleTranslate.php b/GoogleTranslate.php index 449f582c..58410a8b 100644 --- a/GoogleTranslate.php +++ b/GoogleTranslate.php @@ -43,9 +43,10 @@ class Pman_Core_GoogleTranslate extends Pman $handle = curl_init(); curl_setopt($handle,CURLOPT_URL, $url); -// curl_setopt($handle, CURLOPT_RETURNTRANSFER, true); + curl_setopt($handle, CURLOPT_POST, count($param)); curl_setopt($handle, CURLOPT_POSTFIELDS, http_build_query($param)); + curl_setopt($handle, CURLOPT_RETURNTRANSFER, true); $response = curl_exec($handle); $responseDecoded = json_decode($response, true); curl_close($handle); -- 2.39.2