From 8f81ea2fbddf67480dfd1e2811c04d840e7d96d6 Mon Sep 17 00:00:00 2001
From: Fabian Becker <halfdan@xnorfz.de>
Date: Thu, 28 Feb 2013 15:15:00 +0100
Subject: [PATCH] If record_statistics = 0 we should not run scheduled tasks!
 http://piwik.org/faq/how-to/#faq_111 - states that when record_statistics = 0
 no connection to the DB is made, running scheduled tasks will connect to the
 db.

---
 core/Tracker.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/core/Tracker.php b/core/Tracker.php
index 320c4b4fdb..bf6154f9b7 100644
--- a/core/Tracker.php
+++ b/core/Tracker.php
@@ -268,7 +268,7 @@ class Piwik_Tracker
 			// don't run scheduled tasks in CLI mode from Tracker, this is the case
 			// where we bulk load logs & don't want to lose time with tasks
 			if(!Piwik_Common::isPhpCliMode()
-				&& !$this->authenticated)
+				&& !$this->authenticated && $this->getState() != self::STATE_LOGGING_DISABLE)
 			{
 				self::runScheduledTasks($now = $this->getCurrentTimestamp());
 			}
-- 
GitLab