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:
Diffstat (limited to 'plugins/CoreHome/Columns/VisitTotalTime.php')
-rw-r--r--plugins/CoreHome/Columns/VisitTotalTime.php8
1 files changed, 1 insertions, 7 deletions
diff --git a/plugins/CoreHome/Columns/VisitTotalTime.php b/plugins/CoreHome/Columns/VisitTotalTime.php
index 9abe8316a9..87025a90f9 100644
--- a/plugins/CoreHome/Columns/VisitTotalTime.php
+++ b/plugins/CoreHome/Columns/VisitTotalTime.php
@@ -96,13 +96,7 @@ class VisitTotalTime extends VisitDimension
$t = 0;
}
- $smallintMysqlLimit = 65534;
-
- if ($t > $smallintMysqlLimit) {
- $t = $smallintMysqlLimit;
- }
-
return $t;
}
-} \ No newline at end of file
+}