DataObjects/Core_email.php
[Pman.Core] / JsCompile.php
index 90eeed7..c61d434 100644 (file)
@@ -37,7 +37,7 @@ class Pman_Core_JsCompile  extends Pman
     }
     
     
-    function get($proj, $args)
+    function get($proj, $args=array())
     {
         if (empty($args)) {
             die("missing action : eg. build or install");
@@ -264,7 +264,7 @@ class Pman_Core_JsCompile  extends Pman
         if (isset($o['packseed'])) {
             return $this->packSeed($files,$output,$translation_base);
         }
-    
+        
         
         require_once 'System.php';
         $packer = System::which('roojspacker');
@@ -291,7 +291,7 @@ class Pman_Core_JsCompile  extends Pman
             unlink($output);
         }
         
-        //var_dump($output);
+         
         if (!file_exists(dirname($output))) {
             mkdir(dirname($output), 0755, true);
         }
@@ -330,8 +330,8 @@ class Pman_Core_JsCompile  extends Pman
             -->";
         clearstatcache();
         // we should do more checking.. return val etc..
-        if (file_exists($output) && ($max < filemtime($output) ) ) {
-            
+        if (file_exists($output) && filesize($output) && ($max < filemtime($output) ) ) {
+            echo "<!-- file looks like its been generated -->\n";
             return true;
         }
         echo '<script type="text/javascript"> alert('. json_encode("Error: Javascript Compile failed\n" . $res) .');</script>';