diff --git a/core/ArchiveProcessing.php b/core/ArchiveProcessing.php
index 3e5b9b4d5aad73be458f8d4f3d894cbd755da347..30d8d6adf4adc2bbd66fb759effd5978fbaba922 100644
--- a/core/ArchiveProcessing.php
+++ b/core/ArchiveProcessing.php
@@ -806,7 +806,10 @@ abstract class Piwik_ArchiveProcessing
 			return false;
 		}
 		
-		$this->isThereSomeVisits = false;
+		if($this->getPluginBeingProcessed($this->getRequestedReport()) == 'VisitsSummary')
+		{
+			$this->isThereSomeVisits = false;
+		}
 		
 		// we look for the nb_visits result for this most recent archive
 		foreach($results as $result)