From b097786f2c63086b1871aefae609d034cd08c7e1 Mon Sep 17 00:00:00 2001 From: Chris Date: Wed, 2 Apr 2014 18:27:39 +0800 Subject: [PATCH] GoogleTranslate.php --- GoogleTranslate.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/GoogleTranslate.php b/GoogleTranslate.php index 259dc79a..da8cce35 100644 --- a/GoogleTranslate.php +++ b/GoogleTranslate.php @@ -41,7 +41,8 @@ class Pman_Core_GoogleTranslate extends Pman $url = 'https://www.googleapis.com/language/translate/v2?'.http_build_query($param); - $handle = curl_init($url); + $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, $param); -- 2.39.2