From 29ab422438565f939120542bfbfb1dd9c4f1ae79 Mon Sep 17 00:00:00 2001 From: Franck Allimant Date: Wed, 13 Nov 2013 16:30:43 +0100 Subject: [PATCH] Fixed typos --- core/lib/Thelia/Core/Template/Assets/AsseticAssetManager.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/lib/Thelia/Core/Template/Assets/AsseticAssetManager.php b/core/lib/Thelia/Core/Template/Assets/AsseticAssetManager.php index b5356bee6..094b256ff 100755 --- a/core/lib/Thelia/Core/Template/Assets/AsseticAssetManager.php +++ b/core/lib/Thelia/Core/Template/Assets/AsseticAssetManager.php @@ -89,7 +89,7 @@ class AsseticAssetManager implements AssetManagerInterface */ protected function copyAssets(Filesystem $fs, $from_directory, $to_directory) { - Tlog::getInstance()->addDebug("Copying assets from ", $from_directory, " to ", $to_directory); + Tlog::getInstance()->addDebug("Copying assets from $from_directory to $to_directory"); $iterator = new \RecursiveIteratorIterator( new \RecursiveDirectoryIterator($from_directory, \RecursiveDirectoryIterator::SKIP_DOTS), @@ -333,7 +333,7 @@ class AsseticAssetManager implements AssetManagerInterface // This is the final name of the generated asset $asset_destination_path = $output_directory . DS . $asset_target_filename; - Tlog::getInstance()->addDebug("Asset destination name: ", $asset_destination_path); + Tlog::getInstance()->addDebug("Asset destination full path: $asset_destination_path"); // We generate an asset only if it does not exists, or if the asset processing is forced in development mode if (! file_exists($asset_destination_path) || ($this->developmentMode && ConfigQuery::read('process_assets', true)) ) {