JsCompile.php
[Pman.Core] / JsCompile.php
index 83df46c..6ef48b3 100644 (file)
@@ -255,7 +255,8 @@ class Pman_Core_JsCompile  extends Pman
         usort($ofiles, $lsort);
         
         $eoutput = escapeshellarg($output);
-        $cmd = "$seed {$o['jspacker']}/pack.js  -o $eoutput " . implode($ofiles, ' ') . ' 2>&1';
+        $toutput = escapeshellarg(preg_replace('/\.js$/', '.__translation__.js', $output));
+        $cmd = "$seed {$o['jspacker']}/pack.js  -o $eoutput -t $output" . implode($ofiles, ' ') . ' 2>&1';
         //echo "<PRE>$cmd\n";
         //echo `$cmd`;
         
@@ -269,7 +270,7 @@ class Pman_Core_JsCompile  extends Pman
         
         $res = `$cmd`;
         //exit;
-        file_put_contents($output.'.log'. $cmd."\n\n". $res);
+        file_put_contents($output.'.log', $cmd."\n\n". $res);
         // since this only appears when we change.. it's ok to dump it out..
           echo "<!-- Compiled javascript
             " . htmlspecialchars($res) . "