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
path: root/core
diff options
context:
space:
mode:
authormattab <matthieu.aubry@gmail.com>2014-04-02 08:00:21 +0400
committermattab <matthieu.aubry@gmail.com>2014-04-02 08:00:21 +0400
commit9d330e885f76517ab206f65fc7229e81e1409184 (patch)
treee53cc2d43a1e56430dcf5c2bc68dd97c076a3983 /core
parent9fa3b757a4b85acab80548ffdf4376df09664c8c (diff)
Refs #4903 Show "visits this week", "visits this month" etc.
Diffstat (limited to 'core')
-rw-r--r--core/CronArchive.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/CronArchive.php b/core/CronArchive.php
index 22027cdb6e..a9adbeaa73 100644
--- a/core/CronArchive.php
+++ b/core/CronArchive.php
@@ -1183,7 +1183,7 @@ class CronArchive
{
$this->log("Archived website id = $idsite, period = $period, "
. (int)$visitsInLastPeriods . " visits in last " . $dateLast . " " . $period . "s, "
- . ($period == "day" ? (int)$visitsToday . " visits today, " : "")
+ . (int)$visitsToday . " visits this " . $period . ", "
. $timer->__toString());
}
}