sync
authorAlan Knowles <alan@roojs.com>
Wed, 2 Apr 2014 13:43:25 +0000 (21:43 +0800)
committerAlan Knowles <alan@roojs.com>
Wed, 2 Apr 2014 13:43:25 +0000 (21:43 +0800)
Generator.php
GoogleTranslate.php

index df681cc..3b36578 100644 (file)
@@ -49,7 +49,7 @@ class Pman_Core_Generator extends DB_DataObject_Generator
     function getAuth()
     {
          
-        die("do not use this directly..");  
+        die("do not use this directly.. - use Core/RunGenerator");  
         
     }
    
index 75c857b..e0f1254 100644 (file)
@@ -36,19 +36,20 @@ class Pman_Core_GoogleTranslate extends Pman
         }
         $param = array(
             'key' => $pc['googlekey'],
-            'q' => rawurlencode($_REQUEST['text']),
+            'q' =>  $_REQUEST['text'],
             'source' => $_REQUEST['src'],
             'target' => $_REQUEST['dest'],
             'ie' => 'UTF-8',
             'oe' => 'UTF-8',
         );
         
+        
         $url = 'https://www.googleapis.com/language/translate/v2';
 
         $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_POSTFIELDS, $param);
         curl_setopt($handle, CURLOPT_RETURNTRANSFER, true);
         curl_setopt($handle, CURLOPT_HTTPHEADER, array('X-HTTP-Method-Override: GET'));