From: Chris Date: Wed, 2 Apr 2014 10:30:24 +0000 (+0800) Subject: GoogleTranslate.php X-Git-Url: http://git.roojs.org/?p=Pman.Core;a=commitdiff_plain;h=f2980c11c02316557c2e25cbd0b9cef7aa113b54 GoogleTranslate.php --- diff --git a/GoogleTranslate.php b/GoogleTranslate.php index 58410a8b..d7ec4333 100644 --- a/GoogleTranslate.php +++ b/GoogleTranslate.php @@ -43,10 +43,10 @@ class Pman_Core_GoogleTranslate extends Pman $handle = curl_init(); curl_setopt($handle,CURLOPT_URL, $url); - 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);