check what is being written to our log files.
[Pman.Core] / JsonToExcel.php
index d58d3e2..75a24fe 100644 (file)
@@ -28,7 +28,7 @@ class Pman_Core_JsonToExcel extends Pman
         return true;
     }
 
-    function get()
+    function get($v, $opts=array())
     {
         $this->jerr("invalid get");
     }
@@ -72,11 +72,10 @@ class Pman_Core_JsonToExcel extends Pman
          $workbook->close();
         
         require_once 'File/Convert.php';
-        $fc=  new File_Convert($this->outfile2, "application/vnd.ms-excel");
+        $fc=  new File_Convert($outfile2, "application/vnd.ms-excel");
         $fn = $fc->convert("application/vnd.ms-excel"); 
-        $fc->serve('attachment',$outfile2); // can fix IE Mess
+        $fc->serve('attachment','excel-'.date('Y-m-d-H-i-s').'.xls'); // can fix IE Mess
         unlink($outfile2); 
     }
-    
-    
+     
 }