Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormattpiwik <matthieu.aubry@gmail.com>2010-06-29 10:45:34 +0400
committermattpiwik <matthieu.aubry@gmail.com>2010-06-29 10:45:34 +0400
commit78edf2b8fbc2c9ca0967faad4f8febf636a2b32b (patch)
tree92c73c8676893d23b0334e3e162bea4776f60a64 /core/Config.php
parent9c5f65ba1f94d0fbe028b6649e21aad26a216866 (diff)
Fixes #660 - Thanks Julien Moumne for the patch! great new feature improving Piwik responsiveness and load time.
* Added new writable dir /tmp/assets/ to write the merged CSS/JS * I had to update checkDirectoriesWritableOrDie and added a slash at the end of all paths, or directory creation in checkDirectoriesWritable was failing git-svn-id: http://dev.piwik.org/svn/trunk@2392 59fd770c-687e-43c8-a1e3-f5a4ff64c105
Diffstat (limited to 'core/Config.php')
-rw-r--r--core/Config.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/Config.php b/core/Config.php
index 4801875131..bfecc6317d 100644
--- a/core/Config.php
+++ b/core/Config.php
@@ -265,7 +265,7 @@ class Piwik_Config
{
if($this->doWriteFileWhenUpdated)
{
- Piwik::checkDirectoriesWritableOrDie( array('/config') );
+ Piwik::checkDirectoriesWritableOrDie( array('/config/') );
}
$enoughPermission = true;
}