Index: trunk/packages/ezjscore_extension/ezextension/ezjscore/classes/ezjscpacker.php
===================================================================
--- trunk/packages/ezjscore_extension/ezextension/ezjscore/classes/ezjscpacker.php	(revision 110)
+++ trunk/packages/ezjscore_extension/ezextension/ezjscore/classes/ezjscpacker.php	(working copy)
@@ -81,7 +81,7 @@
         foreach ( $packedFiles as $packedFile )
         {
             // Is this a js file or js content?
-            if ( isset( $packedFile[4] ) && strripos( $packedFile, '.js' ) === ( strlen( $packedFile ) -3 ) )
+            if ( isset( $packedFile[4] ) && ( strpos( $packedFile, '.js?ts=' ) !== false || strripos( $packedFile, '.js' ) === ( strlen( $packedFile ) -3 ) ) )
             {
                 if ( $useFullUrl )
                 {
@@ -118,7 +118,7 @@
         foreach ( $packedFiles as $packedFile )
         {
             // Is this a css file or css content?
-            if ( isset( $packedFile[5] ) && strripos( $packedFile, '.css' ) === ( strlen( $packedFile ) -4 ) )
+            if ( isset( $packedFile[5] ) && ( strpos( $packedFile, '.css?ts=' ) !== false || strripos( $packedFile, '.css' ) === ( strlen( $packedFile ) -4 ) ) )
             {
                 if ( $useFullUrl )
                 {
@@ -362,7 +362,7 @@
             // check last modified time and return path to cache file if valid
             if ( $lastmodified <= filemtime( $cachePath . $cacheName ) )
             {
-                $httpFiles[] = $packerInfo['www_dir'] . $cachePath . $cacheName;
+                $httpFiles[] = $packerInfo['www_dir'] . $cachePath . $cacheName . '?ts=' . $lastmodified;
                 return $httpFiles;
             }
         }
@@ -414,7 +414,7 @@
         // save file and return path if sucsessfull
         if( eZFile::create( $cacheName, $cachePath, $content ) )
         {
-            $httpFiles[] = $packerInfo['www_dir'] . $cachePath . $cacheName;
+            $httpFiles[] = $packerInfo['www_dir'] . $cachePath . $cacheName . '?ts=' . $lastmodified;
             return $httpFiles;
         }
 
