diff options
author | Fabio Bas <ctrlaltca@gmail.com> | 2013-09-27 12:12:37 +0200 |
---|---|---|
committer | Fabio Bas <ctrlaltca@gmail.com> | 2013-09-27 13:06:39 +0200 |
commit | 7d567fa0a50a363fa8d8951ae2a2310a102454fc (patch) | |
tree | 52f9541daffd2472658e8d526d3355e6a4b42842 /framework/TApplicationComponent.php | |
parent | 9cc40c4b30caa7052101cf2818d941647a791f34 (diff) |
Fix for mirror method TApplicationComponent::publishFilePath()
It was stripping away the second parameter of
TAssetManager::publishFilePath()
Diffstat (limited to 'framework/TApplicationComponent.php')
-rw-r--r-- | framework/TApplicationComponent.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/framework/TApplicationComponent.php b/framework/TApplicationComponent.php index 08f86e2d..a307d54b 100644 --- a/framework/TApplicationComponent.php +++ b/framework/TApplicationComponent.php @@ -110,9 +110,9 @@ class TApplicationComponent extends TComponent * @param string absolute path of the file or directory to be published * @return string URL to the published file or directory */ - public function publishFilePath($fullPath) + public function publishFilePath($fullPath, $checkTimestamp=false) { - return Prado::getApplication()->getAssetManager()->publishFilePath($fullPath); + return Prado::getApplication()->getAssetManager()->publishFilePath($fullPath, $checkTimestamp); } } |