diff options
| -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);  	}  } | 
