From 1306573e7df9e26e0098f88b178fba06e796bb90 Mon Sep 17 00:00:00 2001 From: Adrian Moennich Date: Mon, 15 Aug 2016 10:33:22 +0200 Subject: [PATCH] Piwik: Disable by default It makes no sense to have it enabled by default with no configuration etc. --- piwik/indico_piwik/plugin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/piwik/indico_piwik/plugin.py b/piwik/indico_piwik/plugin.py index 63b6cff..9f9573f 100644 --- a/piwik/indico_piwik/plugin.py +++ b/piwik/indico_piwik/plugin.py @@ -43,7 +43,7 @@ class PiwikPlugin(IndicoPlugin): track_script = 'piwik.php' default_settings = { - 'enabled': True, + 'enabled': False, 'enabled_for_events': True, 'enabled_for_downloads': True, 'cache_enabled': True,