From 7d567fa0a50a363fa8d8951ae2a2310a102454fc Mon Sep 17 00:00:00 2001 From: Fabio Bas Date: Fri, 27 Sep 2013 12:12:37 +0200 Subject: Fix for mirror method TApplicationComponent::publishFilePath() It was stripping away the second parameter of TAssetManager::publishFilePath() --- framework/TApplicationComponent.php | 4 ++-- 1 file 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); } } -- cgit v1.2.3