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:
authorThomas Steur <thomas.steur@googlemail.com>2014-07-02 06:23:42 +0400
committerThomas Steur <thomas.steur@googlemail.com>2014-07-02 06:23:42 +0400
commit5ce45d1a948bd965f63c333d8f2ed0f76f74cc92 (patch)
tree79d9d6d1f9e3dd2675c69442b0cff9ed8d5321e5 /core/AssetManager.php
parent3a8aa4a5198b4f0b917ff72fbd32d14896c8fd67 (diff)
added development flag which allows us to not cache static cache and to make some more checks when developers develop plugins
Diffstat (limited to 'core/AssetManager.php')
-rw-r--r--core/AssetManager.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/AssetManager.php b/core/AssetManager.php
index 4bf29afef0..1badba4d9e 100644
--- a/core/AssetManager.php
+++ b/core/AssetManager.php
@@ -273,7 +273,7 @@ class AssetManager extends Singleton
*/
public function isMergedAssetsDisabled()
{
- return Config::getInstance()->Debug['disable_merged_assets'];
+ return Config::getInstance()->Development['disable_merged_assets'];
}
/**