fix #8131 - chinese translations
[Pman.Core] / UploadProgress.php
index bf1ac1e..a0b144d 100644 (file)
@@ -7,15 +7,16 @@ class Pman_Core_UploadProgress extends Pman
         
         $au = $this->getAuthUser();
         if (!$au) {
-             $this->jerr("Not authenticated", array('authFailure' => true));
+             $this->jerror("LOGIN-NOAUTH", "Not authenticated", array('authFailure' => true));
         }
         $this->authUser = $au;
         // check that it's a supplier!!!! 
         
         return true; 
     }
-    function get()
-    {   
+    function get($v, $opts=array())
+    {
+        $this->sessionState(0); // turn off the session..
         header("Cache-Control: no-cache, must-revalidate");
         header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
         if (  !function_exists('uploadprogress_get_info')) {
@@ -23,7 +24,9 @@ class Pman_Core_UploadProgress extends Pman
            }
         if (!empty($_GET['id'])) {
            // var_dump(uploadprogress_get_info($_GET['id']));
-            $this->jok(uploadprogress_get_info($_GET['id']));
+            $ret = uploadprogress_get_info($_GET['id']);
+             
+            $this->jok($ret);
         }
         $this->jerr("no data");
     }