summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--HISTORY1
-rw-r--r--framework/Web/TAssetManager.php2
2 files changed, 2 insertions, 1 deletions
diff --git a/HISTORY b/HISTORY
index ee8c5758..6e7c19c0 100644
--- a/HISTORY
+++ b/HISTORY
@@ -11,6 +11,7 @@ ENH: Added Display property to TWebControl (Wei)
ENH: Added TUser.getState() and setState() for storing user session data (Qiang)
ENH: Added renderer feature to TRepeater, TDataList and TDataGrid (Qiang)
ENH: Added support to include external application configuration files (Qiang)
+ENH: Added PRADO version info in PRADO-generated directories to avoid upgrading issue (Qiang)
NEW: TShellApplication (Qiang)
NEW: Active Record driver for IBM DB2 (Cesar Ramos)
diff --git a/framework/Web/TAssetManager.php b/framework/Web/TAssetManager.php
index 41c3216a..77bd04f6 100644
--- a/framework/Web/TAssetManager.php
+++ b/framework/Web/TAssetManager.php
@@ -218,7 +218,7 @@ class TAssetManager extends TModule
*/
protected function hash($dir)
{
- return sprintf('%x',crc32($dir));
+ return sprintf('%x',crc32($dir.Prado::getVersion()));
}
/**